├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── background.js ├── manifest.json ├── options.html ├── options.js └── sanitizer.js /.gitignore: -------------------------------------------------------------------------------- 1 | /web-ext-artifacts/ 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurzNN/TST-Colored-tabs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurzNN/TST-Colored-tabs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurzNN/TST-Colored-tabs/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurzNN/TST-Colored-tabs/HEAD/background.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurzNN/TST-Colored-tabs/HEAD/manifest.json -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurzNN/TST-Colored-tabs/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurzNN/TST-Colored-tabs/HEAD/options.js -------------------------------------------------------------------------------- /sanitizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MurzNN/TST-Colored-tabs/HEAD/sanitizer.js --------------------------------------------------------------------------------