├── .gitignore ├── Chrome ├── chrome-bg.js ├── manifest.json ├── options.html └── options.js ├── DistractionFree.safariextension ├── Icon.png ├── Info.plist ├── Settings.plist └── safari-bg.html ├── Firefox ├── firefox-bg.js └── manifest.json ├── IDEAS.md ├── README.md ├── clone.sh ├── df.js ├── img ├── 128-store.png ├── icon-128.png ├── icon-16.png ├── icon-19.png ├── icon-256.png ├── icon-38.png └── icon-48.png ├── package.sh └── resources ├── icon.sketch ├── promo-1400x560.png ├── promo-440x280.png ├── promo-920x680.png └── screenshots └── fullscreen.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/.gitignore -------------------------------------------------------------------------------- /Chrome/chrome-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/Chrome/chrome-bg.js -------------------------------------------------------------------------------- /Chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/Chrome/manifest.json -------------------------------------------------------------------------------- /Chrome/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/Chrome/options.html -------------------------------------------------------------------------------- /Chrome/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/Chrome/options.js -------------------------------------------------------------------------------- /DistractionFree.safariextension/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/DistractionFree.safariextension/Icon.png -------------------------------------------------------------------------------- /DistractionFree.safariextension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/DistractionFree.safariextension/Info.plist -------------------------------------------------------------------------------- /DistractionFree.safariextension/Settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/DistractionFree.safariextension/Settings.plist -------------------------------------------------------------------------------- /DistractionFree.safariextension/safari-bg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/DistractionFree.safariextension/safari-bg.html -------------------------------------------------------------------------------- /Firefox/firefox-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/Firefox/firefox-bg.js -------------------------------------------------------------------------------- /Firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/Firefox/manifest.json -------------------------------------------------------------------------------- /IDEAS.md: -------------------------------------------------------------------------------- 1 | 2 | AddType application/octet-stream .safariextz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/README.md -------------------------------------------------------------------------------- /clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/clone.sh -------------------------------------------------------------------------------- /df.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/df.js -------------------------------------------------------------------------------- /img/128-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/img/128-store.png -------------------------------------------------------------------------------- /img/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/img/icon-128.png -------------------------------------------------------------------------------- /img/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/img/icon-16.png -------------------------------------------------------------------------------- /img/icon-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/img/icon-19.png -------------------------------------------------------------------------------- /img/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/img/icon-256.png -------------------------------------------------------------------------------- /img/icon-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/img/icon-38.png -------------------------------------------------------------------------------- /img/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/img/icon-48.png -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/package.sh -------------------------------------------------------------------------------- /resources/icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/resources/icon.sketch -------------------------------------------------------------------------------- /resources/promo-1400x560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/resources/promo-1400x560.png -------------------------------------------------------------------------------- /resources/promo-440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/resources/promo-440x280.png -------------------------------------------------------------------------------- /resources/promo-920x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/resources/promo-920x680.png -------------------------------------------------------------------------------- /resources/screenshots/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kallepersson/DistractionFree/HEAD/resources/screenshots/fullscreen.png --------------------------------------------------------------------------------