├── .babelrc ├── .env.default ├── .eslintrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── LICENCE.GPL-3.md ├── LICENCE.NOHARM-draft.md ├── LICENCE.md ├── README.md ├── assets ├── fonts │ ├── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Light.ttf │ │ └── Roboto-Medium.ttf │ └── Roboto_Mono │ │ ├── LICENSE.txt │ │ └── RobotoMono-Medium.ttf ├── icon-16.png ├── icon-32.png ├── icon-64.png ├── icon.png └── logo.png ├── manifest.json ├── package.json ├── scripts ├── build-dev.sh └── build.sh ├── src ├── background.html ├── frame.html ├── js │ ├── background │ │ ├── addresses.js │ │ ├── index.js │ │ ├── menus.js │ │ └── scores.js │ ├── browser │ │ ├── chrome │ │ │ ├── constants.js │ │ │ ├── index.js │ │ │ ├── messages.js │ │ │ └── storage.js │ │ └── firefox │ │ │ ├── constants.js │ │ │ ├── index.js │ │ │ ├── messages.js │ │ │ └── storage.js │ ├── components │ │ ├── alerts │ │ │ ├── alerts.module.scss │ │ │ └── index.js │ │ ├── button │ │ │ ├── button.module.scss │ │ │ └── index.js │ │ ├── copy-to-clipboard │ │ │ └── index.js │ │ ├── domain-score │ │ │ ├── domain-score.module.scss │ │ │ └── index.js │ │ ├── form │ │ │ ├── form.module.scss │ │ │ └── index.js │ │ ├── icons │ │ │ ├── icons.module.scss │ │ │ └── index.js │ │ ├── radio │ │ │ ├── index.js │ │ │ └── radio.module.scss │ │ ├── rank │ │ │ ├── index.js │ │ │ └── rank.module.scss │ │ ├── score │ │ │ ├── index.js │ │ │ └── score.module.scss │ │ └── text │ │ │ ├── index.js │ │ │ └── text.module.scss │ ├── constants.js │ ├── content │ │ ├── frame │ │ │ ├── frame.scss │ │ │ ├── index.js │ │ │ └── popup.module.scss │ │ ├── gmail │ │ │ ├── gmail.module.scss │ │ │ ├── index.js │ │ │ ├── renderer.js │ │ │ └── utils.js │ │ ├── index.js │ │ ├── modal.js │ │ ├── onload.js │ │ └── patch.js │ ├── hooks │ │ ├── use-background.js │ │ ├── use-badge.js │ │ ├── use-countdown.js │ │ ├── use-current-url.js │ │ ├── use-domain-score.js │ │ ├── use-graphql.js │ │ ├── use-new-tab.js │ │ └── use-storage.js │ ├── options │ │ ├── app.scss │ │ ├── index.js │ │ ├── loading.js │ │ ├── loading.module.scss │ │ └── pages │ │ │ ├── about │ │ │ ├── about.module.scss │ │ │ └── index.js │ │ │ ├── account │ │ │ ├── account.module.scss │ │ │ ├── index.js │ │ │ └── invite.js │ │ │ ├── appearance │ │ │ ├── appearance.module.scss │ │ │ └── index.js │ │ │ ├── emails │ │ │ ├── emails.module.scss │ │ │ ├── index.js │ │ │ └── list.js │ │ │ ├── feedback │ │ │ ├── feedback.module.scss │ │ │ ├── index.js │ │ │ └── reducer.js │ │ │ ├── help │ │ │ ├── help.module.scss │ │ │ └── index.js │ │ │ ├── layout.js │ │ │ ├── layout.module.scss │ │ │ └── preferences │ │ │ ├── index.js │ │ │ └── preferences.module.scss │ ├── popup │ │ ├── footer │ │ │ ├── footer.module.scss │ │ │ └── index.js │ │ ├── index.js │ │ ├── popup.module.scss │ │ └── reset.scss │ ├── providers │ │ ├── alert-provider.js │ │ ├── connect-provider.js │ │ ├── user-provider.js │ │ └── user-reducer.js │ └── utils │ │ ├── alarms.js │ │ ├── cache.js │ │ ├── classnames.js │ │ ├── digest.js │ │ ├── is-excluded-domain.js │ │ ├── is-mail-provider.js │ │ ├── logger.js │ │ ├── preferences.js │ │ ├── ranks.js │ │ ├── request.js │ │ ├── social │ │ ├── facebook.js │ │ ├── index.js │ │ ├── linkedin.js │ │ ├── twitter.js │ │ └── window.js │ │ └── storage.js ├── manifest.chrome.json ├── manifest.firefox.json ├── options.html ├── popup.html └── styles │ ├── common │ └── colors.scss │ ├── global │ └── layout.scss │ └── mixins │ ├── ranks.scss │ └── themes.scss ├── store-assets └── chrome │ ├── app store 1.png │ ├── app store 2.png │ ├── app store 3.png │ ├── app store 4.png │ ├── app store 5.png │ ├── app store 6.png │ ├── app store 7.png │ ├── icon_128x128.png │ ├── large-tile.png │ ├── marquee.png │ ├── old │ ├── Chrome Screenshot 1.png │ ├── Chrome Screenshot 2.png │ ├── Chrome Screenshot 3.png │ ├── Chrome Screenshot 4.png │ └── Chrome Screenshot 5.png │ └── small-tile.png ├── tests └── blocking │ ├── delayed-form │ └── index.html │ ├── event │ └── index.html │ ├── form-action │ └── index.html │ ├── handler-and-action │ └── index.html │ ├── handler │ └── index.html │ ├── styles.css │ └── submit.html ├── webpack.chrome.js ├── webpack.config.js ├── webpack.firefox.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/.env.default -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v12.9.1 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENCE.GPL-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/LICENCE.GPL-3.md -------------------------------------------------------------------------------- /LICENCE.NOHARM-draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/LICENCE.NOHARM-draft.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /assets/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto_Mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/fonts/Roboto_Mono/LICENSE.txt -------------------------------------------------------------------------------- /assets/fonts/Roboto_Mono/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/fonts/Roboto_Mono/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /assets/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/icon-16.png -------------------------------------------------------------------------------- /assets/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/icon-32.png -------------------------------------------------------------------------------- /assets/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/icon-64.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/assets/logo.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/scripts/build-dev.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /src/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/background.html -------------------------------------------------------------------------------- /src/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/frame.html -------------------------------------------------------------------------------- /src/js/background/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/background/addresses.js -------------------------------------------------------------------------------- /src/js/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/background/index.js -------------------------------------------------------------------------------- /src/js/background/menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/background/menus.js -------------------------------------------------------------------------------- /src/js/background/scores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/background/scores.js -------------------------------------------------------------------------------- /src/js/browser/chrome/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/browser/chrome/constants.js -------------------------------------------------------------------------------- /src/js/browser/chrome/index.js: -------------------------------------------------------------------------------- 1 | const b = chrome; 2 | export default b; 3 | -------------------------------------------------------------------------------- /src/js/browser/chrome/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/browser/chrome/messages.js -------------------------------------------------------------------------------- /src/js/browser/chrome/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/browser/chrome/storage.js -------------------------------------------------------------------------------- /src/js/browser/firefox/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/browser/firefox/constants.js -------------------------------------------------------------------------------- /src/js/browser/firefox/index.js: -------------------------------------------------------------------------------- 1 | const b = browser; 2 | export default b; 3 | -------------------------------------------------------------------------------- /src/js/browser/firefox/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/browser/firefox/messages.js -------------------------------------------------------------------------------- /src/js/browser/firefox/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/browser/firefox/storage.js -------------------------------------------------------------------------------- /src/js/components/alerts/alerts.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/alerts/alerts.module.scss -------------------------------------------------------------------------------- /src/js/components/alerts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/alerts/index.js -------------------------------------------------------------------------------- /src/js/components/button/button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/button/button.module.scss -------------------------------------------------------------------------------- /src/js/components/button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/button/index.js -------------------------------------------------------------------------------- /src/js/components/copy-to-clipboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/copy-to-clipboard/index.js -------------------------------------------------------------------------------- /src/js/components/domain-score/domain-score.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/domain-score/domain-score.module.scss -------------------------------------------------------------------------------- /src/js/components/domain-score/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/domain-score/index.js -------------------------------------------------------------------------------- /src/js/components/form/form.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/form/form.module.scss -------------------------------------------------------------------------------- /src/js/components/form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/form/index.js -------------------------------------------------------------------------------- /src/js/components/icons/icons.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/icons/icons.module.scss -------------------------------------------------------------------------------- /src/js/components/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/icons/index.js -------------------------------------------------------------------------------- /src/js/components/radio/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/radio/index.js -------------------------------------------------------------------------------- /src/js/components/radio/radio.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/radio/radio.module.scss -------------------------------------------------------------------------------- /src/js/components/rank/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/rank/index.js -------------------------------------------------------------------------------- /src/js/components/rank/rank.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/rank/rank.module.scss -------------------------------------------------------------------------------- /src/js/components/score/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/score/index.js -------------------------------------------------------------------------------- /src/js/components/score/score.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/score/score.module.scss -------------------------------------------------------------------------------- /src/js/components/text/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/text/index.js -------------------------------------------------------------------------------- /src/js/components/text/text.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/components/text/text.module.scss -------------------------------------------------------------------------------- /src/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/constants.js -------------------------------------------------------------------------------- /src/js/content/frame/frame.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/frame/frame.scss -------------------------------------------------------------------------------- /src/js/content/frame/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/frame/index.js -------------------------------------------------------------------------------- /src/js/content/frame/popup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/frame/popup.module.scss -------------------------------------------------------------------------------- /src/js/content/gmail/gmail.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/gmail/gmail.module.scss -------------------------------------------------------------------------------- /src/js/content/gmail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/gmail/index.js -------------------------------------------------------------------------------- /src/js/content/gmail/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/gmail/renderer.js -------------------------------------------------------------------------------- /src/js/content/gmail/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/gmail/utils.js -------------------------------------------------------------------------------- /src/js/content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/index.js -------------------------------------------------------------------------------- /src/js/content/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/modal.js -------------------------------------------------------------------------------- /src/js/content/onload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/onload.js -------------------------------------------------------------------------------- /src/js/content/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/content/patch.js -------------------------------------------------------------------------------- /src/js/hooks/use-background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/hooks/use-background.js -------------------------------------------------------------------------------- /src/js/hooks/use-badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/hooks/use-badge.js -------------------------------------------------------------------------------- /src/js/hooks/use-countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/hooks/use-countdown.js -------------------------------------------------------------------------------- /src/js/hooks/use-current-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/hooks/use-current-url.js -------------------------------------------------------------------------------- /src/js/hooks/use-domain-score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/hooks/use-domain-score.js -------------------------------------------------------------------------------- /src/js/hooks/use-graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/hooks/use-graphql.js -------------------------------------------------------------------------------- /src/js/hooks/use-new-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/hooks/use-new-tab.js -------------------------------------------------------------------------------- /src/js/hooks/use-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/hooks/use-storage.js -------------------------------------------------------------------------------- /src/js/options/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/app.scss -------------------------------------------------------------------------------- /src/js/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/index.js -------------------------------------------------------------------------------- /src/js/options/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/loading.js -------------------------------------------------------------------------------- /src/js/options/loading.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/loading.module.scss -------------------------------------------------------------------------------- /src/js/options/pages/about/about.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/about/about.module.scss -------------------------------------------------------------------------------- /src/js/options/pages/about/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/about/index.js -------------------------------------------------------------------------------- /src/js/options/pages/account/account.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/account/account.module.scss -------------------------------------------------------------------------------- /src/js/options/pages/account/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/account/index.js -------------------------------------------------------------------------------- /src/js/options/pages/account/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/account/invite.js -------------------------------------------------------------------------------- /src/js/options/pages/appearance/appearance.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/appearance/appearance.module.scss -------------------------------------------------------------------------------- /src/js/options/pages/appearance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/appearance/index.js -------------------------------------------------------------------------------- /src/js/options/pages/emails/emails.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/emails/emails.module.scss -------------------------------------------------------------------------------- /src/js/options/pages/emails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/emails/index.js -------------------------------------------------------------------------------- /src/js/options/pages/emails/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/emails/list.js -------------------------------------------------------------------------------- /src/js/options/pages/feedback/feedback.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/feedback/feedback.module.scss -------------------------------------------------------------------------------- /src/js/options/pages/feedback/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/feedback/index.js -------------------------------------------------------------------------------- /src/js/options/pages/feedback/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/feedback/reducer.js -------------------------------------------------------------------------------- /src/js/options/pages/help/help.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/help/help.module.scss -------------------------------------------------------------------------------- /src/js/options/pages/help/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/help/index.js -------------------------------------------------------------------------------- /src/js/options/pages/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/layout.js -------------------------------------------------------------------------------- /src/js/options/pages/layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/layout.module.scss -------------------------------------------------------------------------------- /src/js/options/pages/preferences/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/preferences/index.js -------------------------------------------------------------------------------- /src/js/options/pages/preferences/preferences.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/options/pages/preferences/preferences.module.scss -------------------------------------------------------------------------------- /src/js/popup/footer/footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/popup/footer/footer.module.scss -------------------------------------------------------------------------------- /src/js/popup/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/popup/footer/index.js -------------------------------------------------------------------------------- /src/js/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/popup/index.js -------------------------------------------------------------------------------- /src/js/popup/popup.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/popup/popup.module.scss -------------------------------------------------------------------------------- /src/js/popup/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/popup/reset.scss -------------------------------------------------------------------------------- /src/js/providers/alert-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/providers/alert-provider.js -------------------------------------------------------------------------------- /src/js/providers/connect-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/providers/connect-provider.js -------------------------------------------------------------------------------- /src/js/providers/user-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/providers/user-provider.js -------------------------------------------------------------------------------- /src/js/providers/user-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/providers/user-reducer.js -------------------------------------------------------------------------------- /src/js/utils/alarms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/alarms.js -------------------------------------------------------------------------------- /src/js/utils/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/cache.js -------------------------------------------------------------------------------- /src/js/utils/classnames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/classnames.js -------------------------------------------------------------------------------- /src/js/utils/digest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/digest.js -------------------------------------------------------------------------------- /src/js/utils/is-excluded-domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/is-excluded-domain.js -------------------------------------------------------------------------------- /src/js/utils/is-mail-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/is-mail-provider.js -------------------------------------------------------------------------------- /src/js/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/logger.js -------------------------------------------------------------------------------- /src/js/utils/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/preferences.js -------------------------------------------------------------------------------- /src/js/utils/ranks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/ranks.js -------------------------------------------------------------------------------- /src/js/utils/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/request.js -------------------------------------------------------------------------------- /src/js/utils/social/facebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/social/facebook.js -------------------------------------------------------------------------------- /src/js/utils/social/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/social/index.js -------------------------------------------------------------------------------- /src/js/utils/social/linkedin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/social/linkedin.js -------------------------------------------------------------------------------- /src/js/utils/social/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/social/twitter.js -------------------------------------------------------------------------------- /src/js/utils/social/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/social/window.js -------------------------------------------------------------------------------- /src/js/utils/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/js/utils/storage.js -------------------------------------------------------------------------------- /src/manifest.chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/manifest.chrome.json -------------------------------------------------------------------------------- /src/manifest.firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/manifest.firefox.json -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/options.html -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/popup.html -------------------------------------------------------------------------------- /src/styles/common/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/styles/common/colors.scss -------------------------------------------------------------------------------- /src/styles/global/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/styles/global/layout.scss -------------------------------------------------------------------------------- /src/styles/mixins/ranks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/styles/mixins/ranks.scss -------------------------------------------------------------------------------- /src/styles/mixins/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/src/styles/mixins/themes.scss -------------------------------------------------------------------------------- /store-assets/chrome/app store 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/app store 1.png -------------------------------------------------------------------------------- /store-assets/chrome/app store 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/app store 2.png -------------------------------------------------------------------------------- /store-assets/chrome/app store 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/app store 3.png -------------------------------------------------------------------------------- /store-assets/chrome/app store 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/app store 4.png -------------------------------------------------------------------------------- /store-assets/chrome/app store 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/app store 5.png -------------------------------------------------------------------------------- /store-assets/chrome/app store 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/app store 6.png -------------------------------------------------------------------------------- /store-assets/chrome/app store 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/app store 7.png -------------------------------------------------------------------------------- /store-assets/chrome/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/icon_128x128.png -------------------------------------------------------------------------------- /store-assets/chrome/large-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/large-tile.png -------------------------------------------------------------------------------- /store-assets/chrome/marquee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/marquee.png -------------------------------------------------------------------------------- /store-assets/chrome/old/Chrome Screenshot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/old/Chrome Screenshot 1.png -------------------------------------------------------------------------------- /store-assets/chrome/old/Chrome Screenshot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/old/Chrome Screenshot 2.png -------------------------------------------------------------------------------- /store-assets/chrome/old/Chrome Screenshot 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/old/Chrome Screenshot 3.png -------------------------------------------------------------------------------- /store-assets/chrome/old/Chrome Screenshot 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/old/Chrome Screenshot 4.png -------------------------------------------------------------------------------- /store-assets/chrome/old/Chrome Screenshot 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/old/Chrome Screenshot 5.png -------------------------------------------------------------------------------- /store-assets/chrome/small-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/store-assets/chrome/small-tile.png -------------------------------------------------------------------------------- /tests/blocking/delayed-form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/tests/blocking/delayed-form/index.html -------------------------------------------------------------------------------- /tests/blocking/event/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/tests/blocking/event/index.html -------------------------------------------------------------------------------- /tests/blocking/form-action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/tests/blocking/form-action/index.html -------------------------------------------------------------------------------- /tests/blocking/handler-and-action/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/tests/blocking/handler-and-action/index.html -------------------------------------------------------------------------------- /tests/blocking/handler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/tests/blocking/handler/index.html -------------------------------------------------------------------------------- /tests/blocking/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/tests/blocking/styles.css -------------------------------------------------------------------------------- /tests/blocking/submit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/tests/blocking/submit.html -------------------------------------------------------------------------------- /webpack.chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/webpack.chrome.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/webpack.firefox.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subscriptionscore/extension/HEAD/yarn.lock --------------------------------------------------------------------------------