├── .github └── workflows │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── public └── images │ ├── chrome.png │ ├── edge.png │ ├── firefox.png │ ├── kofi.png │ └── paypal.png ├── sass-watch.sh └── src ├── assets ├── icon-48.png └── icon-96.png ├── manifest_chrome.json ├── manifest_firefox.json ├── options.json ├── popup ├── popup.css ├── popup.html └── popup.js ├── scripts ├── ajax.js ├── background.js ├── functions.js ├── info.js └── lang.js ├── style.css └── style.scss /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/README.md -------------------------------------------------------------------------------- /public/images/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/public/images/chrome.png -------------------------------------------------------------------------------- /public/images/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/public/images/edge.png -------------------------------------------------------------------------------- /public/images/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/public/images/firefox.png -------------------------------------------------------------------------------- /public/images/kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/public/images/kofi.png -------------------------------------------------------------------------------- /public/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/public/images/paypal.png -------------------------------------------------------------------------------- /sass-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/sass-watch.sh -------------------------------------------------------------------------------- /src/assets/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/assets/icon-48.png -------------------------------------------------------------------------------- /src/assets/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/assets/icon-96.png -------------------------------------------------------------------------------- /src/manifest_chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/manifest_chrome.json -------------------------------------------------------------------------------- /src/manifest_firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/manifest_firefox.json -------------------------------------------------------------------------------- /src/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/options.json -------------------------------------------------------------------------------- /src/popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/popup/popup.css -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/popup/popup.js -------------------------------------------------------------------------------- /src/scripts/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/scripts/ajax.js -------------------------------------------------------------------------------- /src/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/scripts/background.js -------------------------------------------------------------------------------- /src/scripts/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/scripts/functions.js -------------------------------------------------------------------------------- /src/scripts/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/scripts/info.js -------------------------------------------------------------------------------- /src/scripts/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/scripts/lang.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/style.css -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alike03/SubscriptionInfo/HEAD/src/style.scss --------------------------------------------------------------------------------