├── .github ├── actions │ ├── action.yml │ └── index.js └── workflows │ └── main.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── background.js ├── contentscript.js ├── defaultlist.json ├── images ├── 128.png ├── 48.png ├── logo.png └── logo.svg ├── lists ├── t1.json └── t2.json ├── manifest.json ├── options.html ├── options.js └── toolbar ├── popup.html └── popup.js /.github/actions/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/.github/actions/action.yml -------------------------------------------------------------------------------- /.github/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/.github/actions/index.js -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/background.js -------------------------------------------------------------------------------- /contentscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/contentscript.js -------------------------------------------------------------------------------- /defaultlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/defaultlist.json -------------------------------------------------------------------------------- /images/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/images/128.png -------------------------------------------------------------------------------- /images/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/images/48.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/images/logo.svg -------------------------------------------------------------------------------- /lists/t1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/lists/t1.json -------------------------------------------------------------------------------- /lists/t2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/lists/t2.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/manifest.json -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/options.js -------------------------------------------------------------------------------- /toolbar/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/toolbar/popup.html -------------------------------------------------------------------------------- /toolbar/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshtrivedi/better/HEAD/toolbar/popup.js --------------------------------------------------------------------------------