US10409899B2 - Method, device and mobile terminal for processing webpage in night mode - Google Patents
Method, device and mobile terminal for processing webpage in night mode Download PDFInfo
- Publication number
- US10409899B2 US10409899B2 US14/998,315 US201514998315A US10409899B2 US 10409899 B2 US10409899 B2 US 10409899B2 US 201514998315 A US201514998315 A US 201514998315A US 10409899 B2 US10409899 B2 US 10409899B2
- Authority
- US
- United States
- Prior art keywords
- webpage
- night mode
- style
- css
- node
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Active, expires
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/10—Text processing
- G06F40/12—Use of codes for handling textual entities
- G06F40/14—Tree-structured documents
- G06F40/143—Markup, e.g. Standard Generalized Markup Language [SGML] or Document Type Definition [DTD]
-
- G06F17/2288—
-
- G06F17/218—
-
- G06F17/2247—
-
- G06F17/227—
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/10—Text processing
- G06F40/103—Formatting, i.e. changing of presentation of documents
- G06F40/117—Tagging; Marking up; Designating a block; Setting of attributes
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/10—Text processing
- G06F40/12—Use of codes for handling textual entities
- G06F40/151—Transformation
- G06F40/154—Tree transformation for tree-structured or markup documents, e.g. XSLT, XSL-FO or stylesheets
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/10—Text processing
- G06F40/197—Version control
Definitions
- This invention relates to the technical field of mobile communication, and in particular, to methods, devices and mobile terminals for processing webpage in night mode.
- Night mode is primarily implemented by two means.
- the luminance of the entire browser interface (including the webpage content) is uniformly reduced, e.g. Baidu mobile phone browser.
- the browser and webpage content are implemented separately.
- a night skin is applied to the browser while the background color of the webpage is replaced by a color with lower-luminance and the brightness of images is reduced.
- Closed operating system e.g. iOS
- a third party usually need to use widgets provided by the closed operating system, such as UIWebView and WKWebView. These widgets may provide limited interfaces for external use and do not allow a third-party browser to make direct modification to webpage settings and webpage rendering which are determined by kernel of the third party. Therefore, only the first means is applicable to mobile terminals, resulting in lower brightness and poor display quality. The legibility of webpage content is substantially reduced accordingly. It becomes very inconvenient for user to browse webpage in a poorly illuminated environment and the browsing effects are significantly influenced.
- Embodiments of the present invention may address technical problems by providing method and device for webpage processing in night mode. It may facilitate night mode, improve the display quality and enhance the user's browsing experience while maintaining layout of original webpage.
- One aspect of the present invention is a method for webpage processing in night mode, wherein the method comprises: a browser injecting a CSS style of night mode and the corresponding JavaScript into a main file of said webpage via an interface of network request processing as provided by the terminal operating system when the browser is loading a webpage; and the browser parsing said main file, executing said JavaScript and applying said CSS style in a night mode to the webpage elements of said webpage for display. Additional features and embodiments are described in the detailed description and in the claims.
- Embodiments of the present invention may have the following benefits: when browser loads a webpage, night mode CSS style and corresponding JavaScript are added to the main file of a webpage.
- the browser parses the main file, it executes the JavaScript and applies the night mode CSS style to each webpage element to cover the original style of the webpage. In this way, it may provide better night display effects, such as providing white characters on a black background, while maintaining the original webpage layout and enhancing the user's browsing experience.
- FIG. 1 illustrates a method for webpage processing in night mode in accordance with an embodiment
- FIG. 2 illustrates a method for webpage processing in night mode in accordance with an embodiment
- FIG. 3 illustrates a method of applying night mode CSS style in accordance with an embodiment
- FIG. 4 illustrates a method for webpage processing in night mode in accordance with an embodiment
- FIG. 5 illustrates a structural diagram of a device for webpage processing in night mode in accordance with an embodiment
- FIG. 6 illustrates a structural diagram of a device for webpage processing in night mode in accordance with an embodiment
- FIG. 7 illustrates a structural diagram of a device for webpage processing in night mode in accordance with an embodiment
- FIG. 8 illustrates a structural diagram of a mobile terminal for webpage processing in night mode in accordance with an embodiment.
- FIG. 1 illustrates a process of a method for webpage processing in night mode in accordance with an embodiment.
- the method comprises:
- Step S 10 when a browser loads a webpage, night mode CSS style and corresponding JavaScript are added to the main file of a webpage through an interface that is used to receive a network request from an operating system of a mobile terminal.
- the priority of the night mode CSS style is higher than that of the original CSS style.
- adding “important” property to the night mode CSS style makes the priority of the night mode CSS style higher than that of the original CSS style.
- Step S 11 When browser parses the main file, it executes the JavaScript and applies the night mode CSS style to each webpage element for display.
- the night mode CSS style and the corresponding JavaScript are added to the main file of the webpage when the browser loads the webpage.
- the browser parses the main file, it executes the JavaScript and applies the night mode CSS style to each webpage element on the webpage to cover the original style of the webpage. In this way, it may provide better night display effects, such as providing white characters on a black background, while maintaining the original webpage layout and enhancing the user's browsing experience.
- FIG. 2 illustrates a process of a method for webpage processing in night mode in accordance with an embodiment.
- the method further comprises:
- Step S 20 Registering a self-defined subclass of NSURLProtocol with iOS system using NSURLProtocol.
- Step S 21 When browser loads a webpage, night mode CSS style and corresponding JavaScript are added to the main file of a webpage through subclass of NSURLProtocol.
- Closed operating system e.g. iOS
- Application of the closed operating system does not allow a third-party browser to access its own kernel (i.e. the kernel of such third-party browser).
- the operating system provides a set of interfaces known as URL Loading System to process network related requests.
- the method for webpage processing in night mode is implemented by using iOS operating system.
- the corresponding network related requests may be processed by registering a self-defined subclass of NSURLProtocol.
- the webpage processing in night mode may be implemented by registering a self-defined subclass of NSURLProtocol.
- the self-defined NSURLProtocol subclass is registered with iOS operating system via NSURLProtocol+[NSURLProtocol registerClass:]. In this way, the NSURLProtocol subclass can process all network requests related to loading resource to webpage.
- the pre-registered NSURLProtocol is used to determine types of resource requests.
- the CSS style of night mode and the corresponding JavaScript may be added to the main file and transmitted to the browser's kernel.
- Step S 22 When the browser parses the main file, it executes the JavaScript and applies the night mode CSS style to each webpage element for display.
- FIG. 1 Refer to corresponding description of FIG. 1 to facilitate further understanding of FIG. 2 .
- FIG. 3 illustrates a process of a method of applying night mode CSS style in accordance with an embodiment.
- the method comprises:
- Step S 30 browser parses a main file of a webpage to generate a DOM (document object model) Tree.
- a DOM Tree of the webpage is generated by parsing the main file of the webpage and the resource cited in the main file.
- Step S 31 browser parses and executes JavaScript, and adds the night mode CSS style to the DOM Tree of the present webpage.
- the browser creates a style node, loads night mode CSS style to the style node, and adds the style node to the DOM Tree.
- the night mode CSS style may be determined by a plurality of CSS style rules.
- the night mode CSS style may be classified into four types based upon the role CSS style plays in night mode processing. A detailed description is provided.
- the night mode CSS style is applied to a first set nodes in the DOM Tree. Background color, frame color or text color of the first set nodes is set as the CSS style that has been preset by the first type style rule.
- Value of the first set nodes is predefined. For instance, if background color of html and body are black and gray in night mode, the background of html and body of the first type style rule is set as black and grey.
- the first type style may be directly applied to the first set nodes to set style of these nodes in night mode.
- text color of all nodes and the CSS style of pseudo-element property of partial nodes may also be set by the first type style rule. For instance, except node labeled as “a” (node “a”) and its descendent nodes, text color of all other nodes is always near-white in night mode.
- the first type style rule the text color of most nodes may be set as gray white.
- the text color of node “a” and its dependent nodes may be set as light blue.
- the color of node “a” that has been inspected and its dependent nodes may be set as light purple.
- the night mode CSS style is applied to all nodes that have not been inspected (hereinafter “non-inspecting nodes”) in the DOM Tree. Background color, frame color or text color of the non-inspecting nodes are set as the CSS style that are preset by the second type style rule.
- the background color and the frame color preset by the second type style rule is the default background color and frame color. Normally the default background color and frame color is black and gray respectively. As it is time-consuming to inspect all the nodes, setting background color and frame color of all non-inspecting nodes as default background color and frame color by the second type style rule may avoid displaying the original style of the webpage before entering the night mode, thereby enhancing the user's browsing experience.
- the night mode CSS style is applied to special nodes in the DOM Tree.
- attributes such as a first class or style property, may be added to the special nodes to acquire original style of the special nodes.
- Background color and frame color of the special node is set as night mode CSS style that has been preset by the third type style rule when the property of the original style satisfies preset conditions.
- the special nodes have special background color, frame color or text color which are set by CSS style ID or class selector.
- the special nodes may have a highlighted white or near-white background color, a background image, a gradient, semitransparent, or fully transparent background, a highlighted white or near-white frame color and other special properties.
- the special nodes may also be set with a special background color, frame color or text color style by other means.
- the background color of all webpage elements is set as nontransparent black and gray. Since the fully transparent, semitransparent and gradient background color, the background image and the frame color of these special nodes are all set to black and gray which is identical or close to background color of black and grey the original structure of the webpage is changed. All nodes may be inspected to recover the special properties of these special nodes.
- calculating property values of the original style may determine whether to change the style that is set by the second type style rule into a special style, such as whether to retain or delete the background image, whether to add transparent property to night mode, whether to change frame color, and whether to attribute to a node fully-transparent class property.
- the second type style rule may use NOT selector to select nodes that have no such attributes in the DOM Tree to avoid these special nodes being selected by the second type style rule when inspecting nodes. As a result, properties of their original style may remain for these special nodes. For instance, the second type style rule may use *:not(.ucbrowser_unnic_class) to select nodes that have no attribute of ucbrowser_unnic_class or use *not:([ucbrwoser_unnic_prop]) to select nodes that have no attribute of ucbrwoser_unnic_prop.
- using “getComputedStyle” to acquire original style of these special nodes and using preset threshold value or preset regular expressions may determine whether property value of original style of a special node exceeds the preset threshold value or satisfies a predefined regular expression. If property value of original style of a special node exceeds the preset threshold value or satisfies a predefined regular expression, style property of the special node needs to be changed. Attributes, such as a second class or style property, may be added to the special node or each special property of the special node, allowing the special node to be selected by the third type style rule.
- an attribute of the second class may be ucbrowser_transparentBkg class.
- the second class may be set as ucbrowser_transparentBkg class when the special node has a mark that indicates transparent background is required.
- special nodes having attributes of the second class or property may be selected by class or property selector.
- Night mode background color, frame color, transparency or mark which marks that the special node may have a special property may also be set by class or property selector.
- style rule of .ucbrowser_delBgImg ⁇ background-image:none !important; ⁇ may be employed to set no background image for a node.
- Style rule of .ucbrowser_changeBgLinear ⁇ background: rgba(40,40,40,0.6)!important; ⁇ may be employed to set a semitransparent background for a node.
- Style rule of .ucbrowser_changeBorder ⁇ border-color: #414c61 !important; ⁇ may be employed to set frame color of a webpage element.
- Style rule of .ucbrowser_transparentBkg ⁇ ⁇ may be employed to mark that a node needs a transparent background.
- color with an RGB color component value over 160 may be preset to be white or near-white.
- the second class ucbrowser_changeBorder may be added to this node so that this node can be selected by .ucbrowser_changeBorder ⁇ border-color: #414c61 !important; ⁇ of the third type style rule, thereby setting the frame color to deep gray and blue.
- properties of background image include RGB or -webkit-gradient (preset regular expression)
- the node may have a gradient background.
- the second class ucbrowser_changeBgLinear may be added to this node so that this node can be selected by .ucbrowser_changeBgLinear ⁇ background: rgba(40,40,40,0.6)!important; ⁇ of the third type style rule, thereby implementing semitransparent effect in night mode.
- no node Before inspecting nodes in the DOM Tree, no node is selected by the third type style rule.
- attributes such as a third class or property, to indicate night mode style has been added to this node.
- ucbrowser_process_done class may be added to a node having night mode style.
- the night mode CSS style is applied to a second set nodes in the DOM Tree.
- Each displayable node in the DOM Tree may be inspected to acquire the second set nodes.
- Settings of the night mode CSS style of the second set nodes include background color, frame color or text color that are preset by the fourth type style rule.
- the second set nodes may be set to include attributes of the third class or property but exclude second class or property. In other words, when a node is not set to have night mode style that has been set by the first or third type style rules the fourth type style rule may be applied to the node.
- first, second, and third type style rules are used to set night mode style of a node
- attributes of second class or property have been added to special nodes and corresponding CSS style has been added to the special node.
- a mark may also be added to special nodes having attributes of second class or property to indicate that the special node may have a special property.
- Nodes to which no attributes of second class or property have been added have no special property of background color, frame color or transparency, indicating that no night mode CSS style has been set to these nodes.
- class or property selector may be used to select nodes that have attributes of the third class or property to determine nodes that have been inspected (hereinafter “inspected nodes”). Then “:not” selector may be used to distinguish nodes to which no attributes of the second class or property have been added (hereinafter “distinguished nodes”) from the inspected nodes. Then background color, frame color and text color of these distinguished nodes may be set as the night mode CSS style that has been preset by the fourth type style rule.
- background color of div node is not set by the first type style rule.
- the div node has attribute of the third class which is class ucbrowser_process_done, indicating that the night mode style has been added to the element.
- the div node does not have attributes of the second class, indicating that the element does not have property of transparent, gradient, white or near-white background.
- the background of this div node may be in black and gray in night mode.
- the background color of this div node may be set as black and gray by div.ucbrowser_process_done:not(ucbrowser_transparentkg):not(.ucbrowser_changeBgLinear):not(ucbrowser_setBackground) ⁇ background-color: #353840 !important; ⁇ .
- the background may be set black and gray and the frame may be set light blue by the fourth type style rule.
- the entire webpage may display night mode effects.
- the DOM Tree of a webpage may include a plurality of nodes
- inspecting all nodes at one time may cause a server to stop responding to a user's gesture, thus causing delay rendering the inspected nodes.
- nodes may not be inspected at one time. In other words, only part of the nodes are inspected at a time. A short period may be added to wait for response from user interface (UI) to allow the inspected nodes to be rendered without long delay.
- UI user interface
- FIG. 4 illustrates a method for webpage processing in night mode in accordance with an embodiment. The method comprises:
- Step S 40 When browsers load a webpage, night mode CSS style and corresponding JavaScript are added to the main file of a webpage through an interface that is used to receive network request from operating system of a mobile terminal.
- Step S 41 When the browser parses the main file to execute the JavaScript and applies the night mode CSS style to each webpage element for display.
- Step S 42 Browser monitors and detects whether new elements are inserted to the webpage. If new elements are detected, the method returns to step S 41 . Otherwise, browser keeps monitoring the webpage at this step.
- browser monitors a webpage by registering DOMNodeInserted event.
- new elements such as a popup menu or submenu
- the method proceeds to step S 41 .
- the night mode CSS style is applied to each new element for display.
- FIG. 1 Refer to corresponding description of FIG. 1 and FIG. 2 to facilitate further understanding of FIG. 4 .
- FIG. 5 illustrates a structural diagram of a device 50 for webpage processing in night mode in accordance with an embodiment.
- the device 50 comprises a CSS style implementation module 51 and a CSS style application module 52 .
- the CSS style implementation module 51 When browsers load a webpage, the CSS style implementation module 51 is configured to add night mode CSS style and corresponding JavaScript to the main file of a webpage through an interface that is used to receive a network request from the operating system of a mobile terminal.
- the priority of the night mode CSS style is higher than that of the original CSS style.
- the CSS style implementation module 51 is configured to add “important” property to the night mode CSS style to make the priority of the night mode CSS style higher than that of the original CSS style.
- the CSS style application module 52 is configured to parse the main file and execute the JavaScript and apply the night mode CSS style to each webpage element for display.
- the night mode CSS style and the corresponding JavaScript are added to the main file of the webpage when browser loads the webpage.
- the CSS style application module 52 executes the JavaScript and applies the night mode CSS style to each webpage element on the webpage to cover the original style of the webpage. In this way, it may provide better night display effects, such as providing white characters on a black background, while maintaining the original webpage layout and enhancing the user's browsing experience.
- FIG. 6 illustrates a structural diagram of a device 60 for webpage processing in night mode in accordance with an embodiment.
- the device 60 comprises a CSS style implementation module 61 , a CSS style application module 62 and a registration module 63 .
- the registration module 63 is configured to register the self-defined subclass of NSURLProtocol with iOS system via NSURLProtocol. Specifically, after the browser is launched and before the browser loads a webpage, registration module 63 registers the self-defined NSURLProtocol subclass with iOS operating system via NSURLProtocol+[NSURLProtocol registerClass:]. In this way, the NSURLProtocol subclass can process all network requests relating to webpage resource loading.
- the CSS style implementation module 61 is configured to add night mode CSS style and corresponding JavaScript to the main file of a webpage.
- the CSS style application module 62 is configured to parse the main file of a webpage and execute JavaScript and apply the night mode CSS style to DOM tree of the webpage.
- the CSS style application module 62 parses the main file of a webpage and sub-resources cited in the main file to generate a DOM tree of this webpage. During execution of the JavaScript performed by the CSS style application module 62 , the CSS style application module 62 creates a style node, adds night mode CSS style to the style node, and adds the style node to the webpage DOM Tree.
- the night mode CSS style comprises a plurality of CSS style rules.
- the night mode CSS style may be classified into four types based upon the role CSS style plays in night mode processing.
- a detailed description is provided to describe how the CSS style application module 62 is configured to parse and execute JavaScript and apply the night mode CSS style to DOM tree of the webpage.
- the CSS style application module 62 applies the night mode CSS style to a first set nodes in the DOM Tree.
- the CSS style of the first set nodes is set as the background color, frame color or text color preset by the first type style rule. Value of the first set nodes is predefined.
- the CSS style application module 62 applies the night mode CSS style to all nodes that have not been inspected (hereinafter is referred as “non-inspecting nodes”) in the DOM Tree. Background color, frame color and text color of these non-inspecting nodes are set as the night mode CSS style that has been preset by the second type style rule.
- the background color and the frame color preset by the second type style rule is the default background color and frame color. Normally the default background color and frame color is black and gray respectively.
- the night mode CSS style is applied to special nodes in the DOM Tree.
- the CSS style application module 62 is configured to inspect each displayable node in the DOM Tree, attributes, such as a first class or style property, may be added to the special nodes to acquire original style of the special nodes.
- Background color and frame color of the special node is set as night mode CSS style that has been preset by the third type style rule when the property of the original style satisfies preset conditions.
- the special nodes have special background color, frame color or text color which are set by CSS style ID or class selector. For instance, the special nodes may have a highlighted white or near-white background color, a background image, a gradient, semitransparent, or fully transparent background, a highlighted white or near-white frame color and other special properties.
- attributes such as the first class or style property may be added to the special nodes.
- the second type style rule may use NOT selector to select nodes that have no such attributes in the DOM Tree to avoid these special nodes being selected by the second type style rule when inspecting nodes. As a result, properties of their original style may be remained for these special nodes.
- the CSS style application module 62 may employ “getComputedStyle” to acquire original style of these special nodes and use preset threshold value or preset regular expressions may determine whether property value of original style of a special node exceeds the preset threshold value or satisfies a predefined regular expression. If property value of original style of a special node exceeds the preset threshold value or satisfies a predefined regular expression, style property of the special node needs to be changed. Attributes, such as a second class or style property, may be added to the special node or each special property of the special node, allowing the special node to be selected by the third type style rule. In this embodiment, special nodes having attributes of the second class or property may be selected by class or property selector. Night mode background color, frame color, transparency or mark which marks that the special node may have a special property may also be set by class or property selector.
- color with an RGB color component value over 160 may be preset to be white or near-white.
- the second class ucbrowser_changeBorder may be added to this node so that this node can be selected by .ucbrowser_changeBorder ⁇ border-color: #414c61 !important; ⁇ of the third type style rule, thereby setting the frame color to deep gray and blue.
- properties of background image include RGB or -webkit-gradient (preset regular expression)
- the node may have a gradient background.
- no node Before inspecting nodes in the DOM Tree, no node is selected by the third type style rule. After adding night mode properties to the special nodes by application of the third type style rule, attributes, such as a third class or property, to indicate night mode style has been added to this node.
- class or property selector may be used to select nodes that have attributes of the third class or property to determine nodes that have been inspected (hereinafter “inspected nodes”). Then “:not” selector may be used to distinguish nodes to which no attributes of the second class or property have been added (hereinafter “distinguished nodes”) from the inspected nodes. Then background color, frame color and text color of these distinguished nodes are set to the night mode CSS style that has been preset by the fourth type style rule.
- the entire webpage may display night mode effects.
- FIG. 7 illustrates a structural diagram of a device 70 for webpage processing in night mode in accordance with an embodiment.
- the device 70 comprises a CSS style implementation module 71 , a CSS style application module 72 , a registration module 73 and a monitoring module 74 .
- the monitoring module 74 is configured to monitor and detect whether new elements are inserted to the webpage. Specifically, the browser monitors a webpage by registering DOMNodeInserted event. When the browser detects new elements, such as a popup menu or submenu, the method proceeds to step S 41 .
- the night mode CSS style is applied to each new element for display.
- FIG. 8 illustrates a structural diagram of a mobile terminal 80 for webpage processing in night mode in accordance with an embodiment.
- the mobile terminal 80 comprises a processing device 81 .
- the processing device 81 comprises a CSS style implementation module 810 and a CSS style application module 811 . Refer to FIG. 5 and its corresponding description.
- the processing device 81 may further comprise a registration module and/or a monitoring module. Refer to FIG. 6 and FIG. 7 and the corresponding text descriptions for these modules.
- the method for webpage processing in night mode comprises adding night mode CSS style and corresponding JavaScript to the main file of a webpage when browsers load a webpage, executing the JavaScript and applying the night mode CSS style to each webpage element to cover the original style of the webpage when the browser parses the main file. In this way, it may provide better night display effects while maintaining the original webpage layout and enhancing the user's browsing experience.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Health & Medical Sciences (AREA)
- Artificial Intelligence (AREA)
- Audiology, Speech & Language Pathology (AREA)
- Computational Linguistics (AREA)
- General Health & Medical Sciences (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Information Transfer Between Computers (AREA)
- User Interface Of Digital Computer (AREA)
Abstract
Description
Claims (9)
Applications Claiming Priority (3)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| CN201410830793.XA CN105786924B (en) | 2014-12-25 | 2014-12-25 | Webpage night mode processing method and device and mobile terminal |
| CN201410830793 | 2014-12-25 | ||
| CN201410830793.X | 2014-12-25 |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| US20160188552A1 US20160188552A1 (en) | 2016-06-30 |
| US10409899B2 true US10409899B2 (en) | 2019-09-10 |
Family
ID=56164348
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US14/998,315 Active 2036-02-12 US10409899B2 (en) | 2014-12-25 | 2015-12-24 | Method, device and mobile terminal for processing webpage in night mode |
Country Status (2)
| Country | Link |
|---|---|
| US (1) | US10409899B2 (en) |
| CN (1) | CN105786924B (en) |
Families Citing this family (17)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| CN105677654B (en) * | 2014-11-18 | 2020-07-03 | 阿里巴巴(中国)有限公司 | Advertisement filtering method and device |
| CN105045645B (en) * | 2015-09-22 | 2016-08-17 | 广州神马移动信息科技有限公司 | Web page loading method, device and system |
| GB2562910B (en) * | 2015-11-04 | 2021-04-28 | Observepoint Inc | Automatic execution of objects in a user interface |
| WO2017136755A1 (en) | 2016-02-04 | 2017-08-10 | Observepoint, Inc. | Analyzing analytic element network traffic |
| US10826802B2 (en) | 2016-02-09 | 2020-11-03 | Observepoint, Inc. | Managing network communication protocols |
| US10212061B2 (en) * | 2016-04-25 | 2019-02-19 | Google Llc | Dynamically rendering interaction statistics data for content elements of an information resource using visual styles |
| US9799131B1 (en) | 2016-04-25 | 2017-10-24 | Google Inc. | Rendering interaction statistics data for content elements of an information resource by identifying client device segments |
| CN106469439A (en) * | 2016-08-30 | 2017-03-01 | 乐视控股(北京)有限公司 | The processing method and processing device of picture in a kind of Night |
| US10482843B2 (en) | 2016-11-07 | 2019-11-19 | Qualcomm Incorporated | Selective reduction of blue light in a display frame |
| CN108073647B (en) * | 2016-11-14 | 2020-06-30 | 腾讯科技(深圳)有限公司 | Webpage display method and device |
| CN108108367B (en) * | 2016-11-24 | 2021-10-26 | 腾讯科技(深圳)有限公司 | Webpage display method and device |
| CN106953991A (en) * | 2017-05-22 | 2017-07-14 | 北京小米移动软件有限公司 | Display mode switching method and device |
| EP3763129A4 (en) | 2018-07-12 | 2021-07-21 | Samsung Electronics Co., Ltd. | CONTENT RENDERING METHOD AND APPARATUS FOR VISUAL ACCESSIBILITY |
| CN110609722B (en) | 2019-08-09 | 2021-07-20 | 华为技术有限公司 | A kind of dark mode display interface processing method, electronic device and storage medium |
| CN114153429B (en) * | 2021-11-09 | 2025-06-27 | 上海众言网络科技有限公司 | Web page adjustment method and device |
| CN114119375A (en) * | 2022-01-25 | 2022-03-01 | 广州市玄武无线科技股份有限公司 | Method and system for realizing automatic generation of long screenshot at iOS (internet operating system) end |
| CN119718448A (en) * | 2023-09-28 | 2025-03-28 | 北京字跳网络技术有限公司 | Starting method, starting device, electronic equipment and medium |
Citations (7)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20110238736A1 (en) * | 2010-03-26 | 2011-09-29 | Salesforce.Com, Inc. | Methods and systems for providing time and date specific software user interfaces |
| CN103258038A (en) * | 2013-05-17 | 2013-08-21 | 广州市动景计算机科技有限公司 | Method and device for synchronizing display modes between browser and webpage |
| CN103327194A (en) * | 2013-06-18 | 2013-09-25 | 广东欧珀移动通信有限公司 | Mode switching method and device for browser skin brightness |
| US20150106686A1 (en) * | 2013-10-14 | 2015-04-16 | Jared Blitzstein | System and method for providing additional content on a webpage |
| US20150234798A1 (en) * | 2012-06-01 | 2015-08-20 | Google Inc. | System and method for changing a web ui application appearance based on state through css selector cascading |
| US20150264423A1 (en) * | 2014-03-11 | 2015-09-17 | Telefonaktiebolaget L M Ericsson (Publ) | Methods and systems for dynamic runtime generation of customized applications |
| US20150310125A1 (en) * | 2014-04-29 | 2015-10-29 | Barak KINARTI | Dynamic Custom Style Sheet Isolation |
Family Cites Families (3)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20140101289A1 (en) * | 2012-10-09 | 2014-04-10 | Agile Fusion Corporation | Methods and systems for selecting device applications |
| CN103873491B (en) * | 2012-12-07 | 2017-07-21 | 华耀(中国)科技有限公司 | VPN safety browser system and setting method |
| CN104239514A (en) * | 2014-09-16 | 2014-12-24 | 可牛网络技术(北京)有限公司 | Webpage rendering method, device and mobile terminal |
-
2014
- 2014-12-25 CN CN201410830793.XA patent/CN105786924B/en active Active
-
2015
- 2015-12-24 US US14/998,315 patent/US10409899B2/en active Active
Patent Citations (7)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20110238736A1 (en) * | 2010-03-26 | 2011-09-29 | Salesforce.Com, Inc. | Methods and systems for providing time and date specific software user interfaces |
| US20150234798A1 (en) * | 2012-06-01 | 2015-08-20 | Google Inc. | System and method for changing a web ui application appearance based on state through css selector cascading |
| CN103258038A (en) * | 2013-05-17 | 2013-08-21 | 广州市动景计算机科技有限公司 | Method and device for synchronizing display modes between browser and webpage |
| CN103327194A (en) * | 2013-06-18 | 2013-09-25 | 广东欧珀移动通信有限公司 | Mode switching method and device for browser skin brightness |
| US20150106686A1 (en) * | 2013-10-14 | 2015-04-16 | Jared Blitzstein | System and method for providing additional content on a webpage |
| US20150264423A1 (en) * | 2014-03-11 | 2015-09-17 | Telefonaktiebolaget L M Ericsson (Publ) | Methods and systems for dynamic runtime generation of customized applications |
| US20150310125A1 (en) * | 2014-04-29 | 2015-10-29 | Barak KINARTI | Dynamic Custom Style Sheet Isolation |
Non-Patent Citations (3)
| Title |
|---|
| Garsiel et al., "How Browsers Work: Behind the scenes of modern web browsers," Aug. 5, 2011, <https://www.html5rocks.com/en/tutorials/internals/howbrowserswork/>, pp. 1-50. * |
| Santiago, Rocir, "NSURLProtocol Tutorial," Sep. 3, 2014, <https://www.raywenderlich.com/59982/nsurlprotocol-tutorial>, pp. 1-15. * |
| Sunkara et al., "Rendering on browsers responsive to user head position and environmental conditions," Dec. 13, 2014, pp. 1-13. * |
Also Published As
| Publication number | Publication date |
|---|---|
| CN105786924A (en) | 2016-07-20 |
| US20160188552A1 (en) | 2016-06-30 |
| CN105786924B (en) | 2020-03-31 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US10409899B2 (en) | Method, device and mobile terminal for processing webpage in night mode | |
| US9600400B1 (en) | Performance testing of web application components using image differentiation | |
| US9928088B2 (en) | Method, apparatus, server and system for implementing web application | |
| US10333972B2 (en) | Method and apparatus for detecting hidden content of web page | |
| US20140337753A1 (en) | System and method for editing the appearance of a user interface | |
| CN110278207B (en) | Click hijacking vulnerability detection method and device and computer equipment | |
| KR20200043467A (en) | Method and terminal device for extracting web page content | |
| US12124528B2 (en) | Image processing method and apparatus, and computer readable storage medium | |
| US9715483B2 (en) | User interface for testing and asserting UI elements with natural language instructions | |
| US10642924B2 (en) | Advertisement filtering method and device | |
| US20130024759A1 (en) | Shared Script Files in Multi-Tab Browser | |
| US20160364497A1 (en) | Method and device for increasing the speed of online browsing and loading of pdf document | |
| CN105094759A (en) | Browse mode switch treatment method and device | |
| US8332821B2 (en) | Using encoding to detect security bugs | |
| CN103927386B (en) | Navigation icon generation method and device | |
| CN104504058B (en) | A kind of page display method and browser device | |
| US10599754B2 (en) | Context editing without interfering with target page | |
| EP3016012A1 (en) | Method and device for marking terminal | |
| CN105335139A (en) | Webpage display method and apparatus | |
| US10664648B2 (en) | Webpage rendering using a remotely generated layout node tree | |
| US20150205767A1 (en) | Link appearance formatting based on target content | |
| CN104050190B (en) | Method and system for processing relation chain data and client | |
| CN108345683B (en) | Web page display method, device, terminal and storage medium | |
| CN106020752A (en) | Method and system for self-adaptation display | |
| CN108108367B (en) | Webpage display method and device |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| AS | Assignment |
Owner name: GUANGZHOU UCWEB COMPUTER TECHNOLOGY CO., LTD., CHI Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:WANG, QIANZHOU;LIANG, JIN;LI, XIANFENG;AND OTHERS;REEL/FRAME:037634/0896 Effective date: 20151228 |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: RESPONSE TO NON-FINAL OFFICE ACTION ENTERED AND FORWARDED TO EXAMINER |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: NOTICE OF ALLOWANCE MAILED -- APPLICATION RECEIVED IN OFFICE OF PUBLICATIONS |
|
| STPP | Information on status: patent application and granting procedure in general |
Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT VERIFIED |
|
| STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
| AS | Assignment |
Owner name: ALIBABA GROUP HOLDING LIMITED, CAYMAN ISLANDS Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:GUANGZHOU UCWEB COMPUTER TECHNOLOGY CO., LTD;REEL/FRAME:052771/0562 Effective date: 20200428 |
|
| MAFP | Maintenance fee payment |
Free format text: PAYMENT OF MAINTENANCE FEE, 4TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1551); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY Year of fee payment: 4 |