├── .eslintrc.json ├── .gitignore ├── README.md ├── images ├── get_started128.png ├── get_started16.png ├── get_started32.png └── get_started48.png ├── manifest.json ├── package.json └── src ├── background.js ├── options.css ├── options.html └── options.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/README.md -------------------------------------------------------------------------------- /images/get_started128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/images/get_started128.png -------------------------------------------------------------------------------- /images/get_started16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/images/get_started16.png -------------------------------------------------------------------------------- /images/get_started32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/images/get_started32.png -------------------------------------------------------------------------------- /images/get_started48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/images/get_started48.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/package.json -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/src/background.js -------------------------------------------------------------------------------- /src/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/src/options.css -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/src/options.html -------------------------------------------------------------------------------- /src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msidqi/BurnAllTheseStackoverflowAndGoogleTabsPlease/HEAD/src/options.js --------------------------------------------------------------------------------