├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── .yo-rc.json ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── app ├── _locales │ ├── en │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── fr │ │ └── messages.json │ └── it │ │ └── messages.json ├── images │ ├── check.png │ ├── cross.png │ ├── forkmeongithub.png │ ├── icon-128.png │ ├── icon-16.png │ ├── icon-19.png │ ├── icon-38.png │ ├── linkedin_btn_20x15.png │ ├── mercury-help.png │ ├── postlight-labs-logo.svg │ ├── readability-help.png │ └── readability-logo.png ├── manifest.json ├── options.html ├── popup.html ├── scripts │ ├── background.js │ ├── chromereload.js │ ├── content.js │ ├── options.js │ └── popup.js └── styles │ ├── content.css │ └── main.css ├── bower.json ├── package.json ├── resources ├── banners │ ├── banner.pxm │ ├── banner440x280.png │ └── icon-128-transparency.png ├── description │ ├── README.md │ ├── en.txt │ └── es.txt ├── extra │ ├── feedly-512.png │ └── readability.png ├── icons │ ├── icon-128.pxm │ ├── icon-16.pxm │ ├── icon-19.pxm │ └── icon-38.pxm └── screenshots │ ├── button.png │ ├── content.png │ ├── main.png │ ├── main.pxm │ ├── options.png │ ├── optionsWithHelp.png │ ├── readability.png │ ├── readability.pxm │ ├── readabilityHelp.png │ ├── shortcut.png │ ├── shortcut.pxm │ └── showFullArticle.png └── test ├── .bowerrc ├── bower.json ├── index.html └── spec └── test.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "generator-mocha": {} 3 | } -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/README.md -------------------------------------------------------------------------------- /app/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/_locales/en/messages.json -------------------------------------------------------------------------------- /app/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/_locales/es/messages.json -------------------------------------------------------------------------------- /app/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/_locales/fr/messages.json -------------------------------------------------------------------------------- /app/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/_locales/it/messages.json -------------------------------------------------------------------------------- /app/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/check.png -------------------------------------------------------------------------------- /app/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/cross.png -------------------------------------------------------------------------------- /app/images/forkmeongithub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/forkmeongithub.png -------------------------------------------------------------------------------- /app/images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/icon-128.png -------------------------------------------------------------------------------- /app/images/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/icon-16.png -------------------------------------------------------------------------------- /app/images/icon-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/icon-19.png -------------------------------------------------------------------------------- /app/images/icon-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/icon-38.png -------------------------------------------------------------------------------- /app/images/linkedin_btn_20x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/linkedin_btn_20x15.png -------------------------------------------------------------------------------- /app/images/mercury-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/mercury-help.png -------------------------------------------------------------------------------- /app/images/postlight-labs-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/postlight-labs-logo.svg -------------------------------------------------------------------------------- /app/images/readability-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/readability-help.png -------------------------------------------------------------------------------- /app/images/readability-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/images/readability-logo.png -------------------------------------------------------------------------------- /app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/manifest.json -------------------------------------------------------------------------------- /app/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/options.html -------------------------------------------------------------------------------- /app/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/popup.html -------------------------------------------------------------------------------- /app/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/scripts/background.js -------------------------------------------------------------------------------- /app/scripts/chromereload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/scripts/chromereload.js -------------------------------------------------------------------------------- /app/scripts/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/scripts/content.js -------------------------------------------------------------------------------- /app/scripts/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/scripts/options.js -------------------------------------------------------------------------------- /app/scripts/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/scripts/popup.js -------------------------------------------------------------------------------- /app/styles/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/styles/content.css -------------------------------------------------------------------------------- /app/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/app/styles/main.css -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/package.json -------------------------------------------------------------------------------- /resources/banners/banner.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/banners/banner.pxm -------------------------------------------------------------------------------- /resources/banners/banner440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/banners/banner440x280.png -------------------------------------------------------------------------------- /resources/banners/icon-128-transparency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/banners/icon-128-transparency.png -------------------------------------------------------------------------------- /resources/description/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/description/README.md -------------------------------------------------------------------------------- /resources/description/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/description/en.txt -------------------------------------------------------------------------------- /resources/description/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/description/es.txt -------------------------------------------------------------------------------- /resources/extra/feedly-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/extra/feedly-512.png -------------------------------------------------------------------------------- /resources/extra/readability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/extra/readability.png -------------------------------------------------------------------------------- /resources/icons/icon-128.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/icons/icon-128.pxm -------------------------------------------------------------------------------- /resources/icons/icon-16.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/icons/icon-16.pxm -------------------------------------------------------------------------------- /resources/icons/icon-19.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/icons/icon-19.pxm -------------------------------------------------------------------------------- /resources/icons/icon-38.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/icons/icon-38.pxm -------------------------------------------------------------------------------- /resources/screenshots/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/button.png -------------------------------------------------------------------------------- /resources/screenshots/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/content.png -------------------------------------------------------------------------------- /resources/screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/main.png -------------------------------------------------------------------------------- /resources/screenshots/main.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/main.pxm -------------------------------------------------------------------------------- /resources/screenshots/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/options.png -------------------------------------------------------------------------------- /resources/screenshots/optionsWithHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/optionsWithHelp.png -------------------------------------------------------------------------------- /resources/screenshots/readability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/readability.png -------------------------------------------------------------------------------- /resources/screenshots/readability.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/readability.pxm -------------------------------------------------------------------------------- /resources/screenshots/readabilityHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/readabilityHelp.png -------------------------------------------------------------------------------- /resources/screenshots/shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/shortcut.png -------------------------------------------------------------------------------- /resources/screenshots/shortcut.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/shortcut.pxm -------------------------------------------------------------------------------- /resources/screenshots/showFullArticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/resources/screenshots/showFullArticle.png -------------------------------------------------------------------------------- /test/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /test/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/test/bower.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/test/index.html -------------------------------------------------------------------------------- /test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muffo/fullyfeedly/HEAD/test/spec/test.js --------------------------------------------------------------------------------