gitextract_jysvujgv/ ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── _locales/ │ ├── en/ │ │ └── messages.json │ └── ru/ │ └── messages.json ├── background/ │ ├── background.html │ └── background.js ├── common/ │ ├── common.css │ └── common.js ├── content/ │ └── content.js ├── definitions/ │ ├── consent.json │ ├── donate.json │ ├── email.json │ ├── message.json │ ├── offer.json │ ├── paywall.json │ └── signup.json ├── inject/ │ └── inject.js ├── manifest-v2.json ├── manifest-v3.json ├── options/ │ ├── options.css │ ├── options.html │ └── options.js ├── package.json ├── popup/ │ ├── popup.css │ ├── popup.html │ └── popup.js └── run