├── .editorconfig ├── .github ├── dependabot.yaml └── workflows │ ├── codeql-analysis.yaml │ └── selenium.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── _locales ├── de │ └── messages.json ├── en │ └── messages.json └── ru │ └── messages.json ├── background.js ├── content.js ├── engine.js ├── eslint.config.js ├── i18n.js ├── icon.svg ├── manifest.json ├── options.html ├── options.js ├── popup.html ├── popup.js ├── style.css ├── test-requirements.txt ├── test.py ├── test_config.json ├── test_config_origin.json └── testserver ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── compose.yaml ├── go.mod ├── page.gohtml ├── proxy ├── Dockerfile └── proxy-http.conf ├── server.go └── static └── style.css /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/.github/workflows/codeql-analysis.yaml -------------------------------------------------------------------------------- /.github/workflows/selenium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/.github/workflows/selenium.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.xpi 3 | /geckodriver.log 4 | /referer-mod-*.zip 5 | /__pycache__/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/README.md -------------------------------------------------------------------------------- /_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/_locales/de/messages.json -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/_locales/ru/messages.json -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/background.js -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/content.js -------------------------------------------------------------------------------- /engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/engine.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/eslint.config.js -------------------------------------------------------------------------------- /i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/i18n.js -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/icon.svg -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/manifest.json -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/options.js -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/popup.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/style.css -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | selenium>=4.0.0 2 | pytest>=7.4.0 3 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/test.py -------------------------------------------------------------------------------- /test_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/test_config.json -------------------------------------------------------------------------------- /test_config_origin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/test_config_origin.json -------------------------------------------------------------------------------- /testserver/.dockerignore: -------------------------------------------------------------------------------- 1 | **/*~ 2 | -------------------------------------------------------------------------------- /testserver/.gitignore: -------------------------------------------------------------------------------- 1 | /testserver 2 | -------------------------------------------------------------------------------- /testserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/testserver/Dockerfile -------------------------------------------------------------------------------- /testserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/testserver/README.md -------------------------------------------------------------------------------- /testserver/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/testserver/compose.yaml -------------------------------------------------------------------------------- /testserver/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/airtower-luna/referer-mod/testserver 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /testserver/page.gohtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/testserver/page.gohtml -------------------------------------------------------------------------------- /testserver/proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/testserver/proxy/Dockerfile -------------------------------------------------------------------------------- /testserver/proxy/proxy-http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/testserver/proxy/proxy-http.conf -------------------------------------------------------------------------------- /testserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/testserver/server.go -------------------------------------------------------------------------------- /testserver/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airtower-luna/referer-mod/HEAD/testserver/static/style.css --------------------------------------------------------------------------------