├── .gitignore ├── .jpmignore ├── LICENSE ├── Makefile ├── README.md ├── chrome.manifest ├── data ├── images │ ├── augment-margin.png │ ├── augment-size.png │ ├── clean.png │ ├── icon16.png │ ├── icon32.png │ ├── print.png │ ├── reduce-margin.png │ ├── reduce-size.png │ ├── solarized-dark.png │ └── solarized-light.png ├── readability.coffee ├── readability.scss └── resources.coffee ├── icon.png ├── lib └── main.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/.gitignore -------------------------------------------------------------------------------- /.jpmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/.jpmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/README.md -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- 1 | resource enjoy-reading data/ 2 | -------------------------------------------------------------------------------- /data/images/augment-margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/augment-margin.png -------------------------------------------------------------------------------- /data/images/augment-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/augment-size.png -------------------------------------------------------------------------------- /data/images/clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/clean.png -------------------------------------------------------------------------------- /data/images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/icon16.png -------------------------------------------------------------------------------- /data/images/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/icon32.png -------------------------------------------------------------------------------- /data/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/print.png -------------------------------------------------------------------------------- /data/images/reduce-margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/reduce-margin.png -------------------------------------------------------------------------------- /data/images/reduce-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/reduce-size.png -------------------------------------------------------------------------------- /data/images/solarized-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/solarized-dark.png -------------------------------------------------------------------------------- /data/images/solarized-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/images/solarized-light.png -------------------------------------------------------------------------------- /data/readability.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/readability.coffee -------------------------------------------------------------------------------- /data/readability.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/readability.scss -------------------------------------------------------------------------------- /data/resources.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/data/resources.coffee -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/icon.png -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeris/enjoy-reading/HEAD/package.json --------------------------------------------------------------------------------