├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── assets ├── css │ ├── payment-gateway-verify.css │ └── popup.css ├── fonts │ └── Vazirmatn[wght].woff2 ├── images │ ├── icon_128.png │ ├── icon_16.png │ ├── icon_48.png │ ├── icon_danger.png │ ├── icon_ok.png │ └── sign.png └── js │ ├── background-handler.js │ ├── background.js │ ├── content-script.js │ ├── data-manager.js │ ├── database.js │ ├── popup.js │ └── utils.js ├── manifest.json ├── popup.html └── popup.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/payment-gateway-verify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/css/payment-gateway-verify.css -------------------------------------------------------------------------------- /assets/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/css/popup.css -------------------------------------------------------------------------------- /assets/fonts/Vazirmatn[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/fonts/Vazirmatn[wght].woff2 -------------------------------------------------------------------------------- /assets/images/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/images/icon_128.png -------------------------------------------------------------------------------- /assets/images/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/images/icon_16.png -------------------------------------------------------------------------------- /assets/images/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/images/icon_48.png -------------------------------------------------------------------------------- /assets/images/icon_danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/images/icon_danger.png -------------------------------------------------------------------------------- /assets/images/icon_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/images/icon_ok.png -------------------------------------------------------------------------------- /assets/images/sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/images/sign.png -------------------------------------------------------------------------------- /assets/js/background-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/js/background-handler.js -------------------------------------------------------------------------------- /assets/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/js/background.js -------------------------------------------------------------------------------- /assets/js/content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/js/content-script.js -------------------------------------------------------------------------------- /assets/js/data-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/js/data-manager.js -------------------------------------------------------------------------------- /assets/js/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/js/database.js -------------------------------------------------------------------------------- /assets/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/js/popup.js -------------------------------------------------------------------------------- /assets/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/assets/js/utils.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-chrome/HEAD/popup.js --------------------------------------------------------------------------------