├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── dependabot.yml └── workflows │ ├── automerge.yml │ └── codeql-analysis.yml ├── .gitignore ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── eslint.config.js ├── logos └── ws-logo.png ├── package.json ├── privacy-policy.md ├── src ├── _locales │ ├── ar │ │ └── messages.json │ ├── bg │ │ └── messages.json │ ├── ca │ │ └── messages.json │ ├── cs │ │ └── messages.json │ ├── da │ │ └── messages.json │ ├── de │ │ └── messages.json │ ├── el │ │ └── messages.json │ ├── en │ │ └── messages.json │ ├── es │ │ └── messages.json │ ├── es_419 │ │ └── messages.json │ ├── fa │ │ └── messages.json │ ├── fr │ │ └── messages.json │ ├── hu │ │ └── messages.json │ ├── id │ │ └── messages.json │ ├── it │ │ └── messages.json │ ├── ja │ │ └── messages.json │ ├── ko │ │ └── messages.json │ ├── lv │ │ └── messages.json │ ├── nl │ │ └── messages.json │ ├── pl │ │ └── messages.json │ ├── pt_BR │ │ └── messages.json │ ├── pt_PT │ │ └── messages.json │ ├── ru │ │ └── messages.json │ ├── sr │ │ └── messages.json │ ├── tr │ │ └── messages.json │ ├── uk │ │ └── messages.json │ ├── vi │ │ └── messages.json │ ├── zh_CN │ │ └── messages.json │ └── zh_TW │ │ └── messages.json ├── images │ ├── icon.png │ ├── icon128.png │ ├── icon16.png │ ├── icon38.png │ ├── icon48.png │ ├── icon_inactive.png │ ├── icon_inactive38.png │ └── loading.svg ├── manifest.json ├── options.html ├── popup.html ├── scripts │ ├── background.js │ ├── core.js │ ├── feedly.api.js │ ├── options.js │ └── popup.js ├── sound │ ├── alert.mp3 │ ├── light-hearted.mp3 │ ├── no-problem.mp3 │ ├── quite-impressed.mp3 │ └── whistling.mp3 └── styles │ ├── css │ ├── bootstrap.css │ ├── options.css │ └── style.css │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── opensanscondensed.woff └── translations └── store ├── ar.md ├── ca.md ├── en.md ├── es-419.md ├── es.md ├── fr.md ├── hu.md ├── it.md ├── ja.md ├── ko.md ├── lv.md ├── nl.md ├── pt-br.md ├── ru.md └── zh-CN.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/eslint.config.js -------------------------------------------------------------------------------- /logos/ws-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/logos/ws-logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/package.json -------------------------------------------------------------------------------- /privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/privacy-policy.md -------------------------------------------------------------------------------- /src/_locales/ar/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/ar/messages.json -------------------------------------------------------------------------------- /src/_locales/bg/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/bg/messages.json -------------------------------------------------------------------------------- /src/_locales/ca/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/ca/messages.json -------------------------------------------------------------------------------- /src/_locales/cs/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/cs/messages.json -------------------------------------------------------------------------------- /src/_locales/da/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/da/messages.json -------------------------------------------------------------------------------- /src/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/de/messages.json -------------------------------------------------------------------------------- /src/_locales/el/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/el/messages.json -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/es/messages.json -------------------------------------------------------------------------------- /src/_locales/es_419/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/es_419/messages.json -------------------------------------------------------------------------------- /src/_locales/fa/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/fa/messages.json -------------------------------------------------------------------------------- /src/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/fr/messages.json -------------------------------------------------------------------------------- /src/_locales/hu/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/hu/messages.json -------------------------------------------------------------------------------- /src/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/id/messages.json -------------------------------------------------------------------------------- /src/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/it/messages.json -------------------------------------------------------------------------------- /src/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/ja/messages.json -------------------------------------------------------------------------------- /src/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/ko/messages.json -------------------------------------------------------------------------------- /src/_locales/lv/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/lv/messages.json -------------------------------------------------------------------------------- /src/_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/nl/messages.json -------------------------------------------------------------------------------- /src/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/pl/messages.json -------------------------------------------------------------------------------- /src/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /src/_locales/pt_PT/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/pt_PT/messages.json -------------------------------------------------------------------------------- /src/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/ru/messages.json -------------------------------------------------------------------------------- /src/_locales/sr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/sr/messages.json -------------------------------------------------------------------------------- /src/_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/tr/messages.json -------------------------------------------------------------------------------- /src/_locales/uk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/uk/messages.json -------------------------------------------------------------------------------- /src/_locales/vi/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/vi/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /src/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /src/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/images/icon.png -------------------------------------------------------------------------------- /src/images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/images/icon128.png -------------------------------------------------------------------------------- /src/images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/images/icon16.png -------------------------------------------------------------------------------- /src/images/icon38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/images/icon38.png -------------------------------------------------------------------------------- /src/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/images/icon48.png -------------------------------------------------------------------------------- /src/images/icon_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/images/icon_inactive.png -------------------------------------------------------------------------------- /src/images/icon_inactive38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/images/icon_inactive38.png -------------------------------------------------------------------------------- /src/images/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/images/loading.svg -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/options.html -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/popup.html -------------------------------------------------------------------------------- /src/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/scripts/background.js -------------------------------------------------------------------------------- /src/scripts/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/scripts/core.js -------------------------------------------------------------------------------- /src/scripts/feedly.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/scripts/feedly.api.js -------------------------------------------------------------------------------- /src/scripts/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/scripts/options.js -------------------------------------------------------------------------------- /src/scripts/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/scripts/popup.js -------------------------------------------------------------------------------- /src/sound/alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/sound/alert.mp3 -------------------------------------------------------------------------------- /src/sound/light-hearted.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/sound/light-hearted.mp3 -------------------------------------------------------------------------------- /src/sound/no-problem.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/sound/no-problem.mp3 -------------------------------------------------------------------------------- /src/sound/quite-impressed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/sound/quite-impressed.mp3 -------------------------------------------------------------------------------- /src/sound/whistling.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/sound/whistling.mp3 -------------------------------------------------------------------------------- /src/styles/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/styles/css/bootstrap.css -------------------------------------------------------------------------------- /src/styles/css/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/styles/css/options.css -------------------------------------------------------------------------------- /src/styles/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/styles/css/style.css -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/styles/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/styles/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/styles/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/styles/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/styles/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/styles/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/opensanscondensed.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/src/styles/fonts/opensanscondensed.woff -------------------------------------------------------------------------------- /translations/store/ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/ar.md -------------------------------------------------------------------------------- /translations/store/ca.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/ca.md -------------------------------------------------------------------------------- /translations/store/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/en.md -------------------------------------------------------------------------------- /translations/store/es-419.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/es-419.md -------------------------------------------------------------------------------- /translations/store/es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/es.md -------------------------------------------------------------------------------- /translations/store/fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/fr.md -------------------------------------------------------------------------------- /translations/store/hu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/hu.md -------------------------------------------------------------------------------- /translations/store/it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/it.md -------------------------------------------------------------------------------- /translations/store/ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/ja.md -------------------------------------------------------------------------------- /translations/store/ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/ko.md -------------------------------------------------------------------------------- /translations/store/lv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/lv.md -------------------------------------------------------------------------------- /translations/store/nl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/nl.md -------------------------------------------------------------------------------- /translations/store/pt-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/pt-br.md -------------------------------------------------------------------------------- /translations/store/ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/ru.md -------------------------------------------------------------------------------- /translations/store/zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olsh/Feedly-Notifier/HEAD/translations/store/zh-CN.md --------------------------------------------------------------------------------