├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _locales ├── de │ └── messages.json └── en │ └── messages.json ├── background.js ├── icons ├── LICENSE ├── assets │ ├── noun_207628_cc.svg │ ├── noun_62186_cc.png │ ├── noun_62186_cc.svg │ └── separation.png ├── fishbowl-disabled.svg ├── fishbowl-light.svg └── fishbowl.svg ├── manifest.json └── package.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | web-ext-artifacts/ 2 | node_modules 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/README.md -------------------------------------------------------------------------------- /_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/_locales/de/messages.json -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/background.js -------------------------------------------------------------------------------- /icons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/icons/LICENSE -------------------------------------------------------------------------------- /icons/assets/noun_207628_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/icons/assets/noun_207628_cc.svg -------------------------------------------------------------------------------- /icons/assets/noun_62186_cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/icons/assets/noun_62186_cc.png -------------------------------------------------------------------------------- /icons/assets/noun_62186_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/icons/assets/noun_62186_cc.svg -------------------------------------------------------------------------------- /icons/assets/separation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/icons/assets/separation.png -------------------------------------------------------------------------------- /icons/fishbowl-disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/icons/fishbowl-disabled.svg -------------------------------------------------------------------------------- /icons/fishbowl-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/icons/fishbowl-light.svg -------------------------------------------------------------------------------- /icons/fishbowl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/icons/fishbowl.svg -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozfreddyb/webext-firstpartyisolation/HEAD/package.json --------------------------------------------------------------------------------