├── BoundedBikeshed.user.js ├── CHANGELOG ├── LICENSE ├── README.md ├── _locales ├── en │ └── messages.json └── nl │ └── messages.json ├── background.js ├── icons ├── bb-128.png ├── bb-48.png └── bb-96.png ├── manifest.json └── options ├── options.css ├── options.html └── options.js /BoundedBikeshed.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/BoundedBikeshed.user.js -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/README.md -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/nl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/_locales/nl/messages.json -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/background.js -------------------------------------------------------------------------------- /icons/bb-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/icons/bb-128.png -------------------------------------------------------------------------------- /icons/bb-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/icons/bb-48.png -------------------------------------------------------------------------------- /icons/bb-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/icons/bb-96.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/manifest.json -------------------------------------------------------------------------------- /options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/options/options.css -------------------------------------------------------------------------------- /options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/options/options.html -------------------------------------------------------------------------------- /options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timkuijsten/BoundedBikeshed/HEAD/options/options.js --------------------------------------------------------------------------------