OLD | NEW |
---|---|
1 # DOM Distiller | 1 # DOM Distiller |
2 | 2 |
3 DOM Distiller aims to provide a better reading experience by distilling the | 3 DOM Distiller aims to provide a better reading experience by distilling the |
4 content of the page. This distilled content can then be used in a variety of | 4 content of the page. This distilled content can then be used in a variety of |
5 ways. | 5 ways. |
6 | 6 |
7 The current efforts that will be powered by DOM Distiller: | 7 The current efforts that are or will be powered by DOM Distiller: |
8 | 8 |
9 - Reader mode: a mobile-friendly viewing mode for Chrome mobile | 9 - Reader mode: a mobile-friendly viewing mode for Chrome mobile |
10 - [Simplify page for print] | |
11 (https://plus.google.com/+FrancoisBeaufort/posts/dDPD2gVThuv) | |
12 | |
13 ## Bug tracking | |
mdjones
2016/02/23 23:46:10
How do you feel about calling this "Report a bug"?
wychen
2016/02/24 00:06:34
Done.
| |
14 | |
15 We use the same bug tracking system Chromium uses (http://crbug.com), and the | |
16 DOM distiller related bugs are filed under [`component:UI>Browser>ReaderMode`] | |
17 (https://bugs.chromium.org/p/chromium/issues/list?q=component%3AUI%3EBrowser%3ER eaderMode) | |
18 component. | |
10 | 19 |
11 ## How to use Reader mode on mobile Chrome | 20 ## How to use Reader mode on mobile Chrome |
12 | 21 |
13 - Open Chrome on your mobile device | 22 - Open Chrome on your mobile device |
14 - Navigate to [chrome://flags](chrome://flags) and search for "Reader mode" | 23 - Navigate to [chrome://flags](chrome://flags) and search for "Reader mode" |
15 (Menu -> Find in page -> Enable Reader Mode Toolbar Icon), or directly go to | 24 (Menu -> Find in page -> Enable Reader Mode Toolbar Icon), or directly go to |
16 [chrome://flags#enable-reader-mode-toolbar-icon] | 25 [chrome://flags#enable-reader-mode-toolbar-icon] |
17 (chrome://flags#enable-reader-mode-toolbar-icon) | 26 (chrome://flags#enable-reader-mode-toolbar-icon) |
18 - Click Enable to turn on Reader mode | 27 - Click Enable to turn on Reader mode |
19 - Click "Relaunch Now" at the bottom of the page | 28 - Click "Relaunch Now" at the bottom of the page |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
446 aliases for easy access later. For example, Nexus 4 would be: | 455 aliases for easy access later. For example, Nexus 4 would be: |
447 | 456 |
448 ``` | 457 ``` |
449 --user-agent="Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) Ap pleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19" | 458 --user-agent="Mozilla/5.0 (Linux; Android 4.2.1; en-us; Nexus 4 Build/JOP40D) Ap pleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19" |
450 ``` | 459 ``` |
451 | 460 |
452 Steps 1-3 in the guide above can typically be done in a stable version of | 461 Steps 1-3 in the guide above can typically be done in a stable version of |
453 Chrome, whereas the rest of the steps is typically done in your own build of | 462 Chrome, whereas the rest of the steps is typically done in your own build of |
454 Chrome (hence the "(Re)" in step 4). Besides speed, this also facilitates | 463 Chrome (hence the "(Re)" in step 4). Besides speed, this also facilitates |
455 side-by-side comparison. | 464 side-by-side comparison. |
OLD | NEW |