├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── background.js ├── content.js ├── icons ├── 128.png ├── 48.png └── 96.png └── manifest.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: CanadaHonk 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | web-ext-artifacts 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooseMod/Extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooseMod/Extension/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooseMod/Extension/HEAD/background.js -------------------------------------------------------------------------------- /content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooseMod/Extension/HEAD/content.js -------------------------------------------------------------------------------- /icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooseMod/Extension/HEAD/icons/128.png -------------------------------------------------------------------------------- /icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooseMod/Extension/HEAD/icons/48.png -------------------------------------------------------------------------------- /icons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooseMod/Extension/HEAD/icons/96.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GooseMod/Extension/HEAD/manifest.json --------------------------------------------------------------------------------