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 are or 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] | 10 - [Simplify page for print] |
(...skipping 19 matching lines...) Expand all Loading... |
30 (chrome://flags#reader-mode-heuristics) | 30 (chrome://flags#reader-mode-heuristics) |
31 - Choose "Appears to be an article" to turn on Reader mode for | 31 - Choose "Appears to be an article" to turn on Reader mode for |
32 non-mobile-friendly long articles, or choose "Always" for debugging. | 32 non-mobile-friendly long articles, or choose "Always" for debugging. |
33 - Click "Relaunch Now" at the bottom of the page | 33 - Click "Relaunch Now" at the bottom of the page |
34 - Next time you're trying to read a page, tap on the "Make page | 34 - Next time you're trying to read a page, tap on the "Make page |
35 mobile-friendly" infobar to try it out! | 35 mobile-friendly" infobar to try it out! |
36 | 36 |
37 # Continuous integration | 37 # Continuous integration |
38 | 38 |
39 - [![Build Status] | 39 - [![Build Status] |
40 (https://drone.io/github.com/chromium/dom-distiller/status.png)] | 40 (https://travis-ci.org/chromium/dom-distiller.svg?branch=master)] |
41 (https://drone.io/github.com/chromium/dom-distiller/latest) | 41 (https://travis-ci.org/chromium/dom-distiller) |
42 - [drone.io waterfall](https://drone.io/github.com/chromium/dom-distiller) | 42 - [Travis-CI waterfall](https://travis-ci.org/chromium/dom-distiller/builds) |
43 | 43 |
44 # Get the code | 44 # Get the code |
45 | 45 |
46 In a folder where you want the code (outside of the chromium checkout): | 46 In a folder where you want the code (outside of the chromium checkout): |
47 | 47 |
48 ```bash | 48 ```bash |
49 git clone https://github.com/chromium/dom-distiller.git | 49 git clone https://github.com/chromium/dom-distiller.git |
50 ``` | 50 ``` |
51 | 51 |
52 A `dom-distiller` folder will be created in the folder you run that command. | 52 A `dom-distiller` folder will be created in the folder you run that command. |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 aliases for easy access later. For example, Nexus 4 would be: | 460 aliases for easy access later. For example, Nexus 4 would be: |
461 | 461 |
462 ``` | 462 ``` |
463 --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" | 463 --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" |
464 ``` | 464 ``` |
465 | 465 |
466 Steps 1-3 in the guide above can typically be done in a stable version of | 466 Steps 1-3 in the guide above can typically be done in a stable version of |
467 Chrome, whereas the rest of the steps is typically done in your own build of | 467 Chrome, whereas the rest of the steps is typically done in your own build of |
468 Chrome (hence the "(Re)" in step 4). Besides speed, this also facilitates | 468 Chrome (hence the "(Re)" in step 4). Besides speed, this also facilitates |
469 side-by-side comparison. | 469 side-by-side comparison. |
OLD | NEW |