├── .gitignore ├── CHANGELOG.md ├── COPYRIGHT ├── LICENSE.md ├── Makefile ├── README.md ├── manifest.json └── script.js /.gitignore: -------------------------------------------------------------------------------- 1 | /build/google-matches.json 2 | /dev/ 3 | /web-ext-artifacts/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/google-direct/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/google-direct/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/google-direct/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/google-direct/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/google-direct/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/google-direct/HEAD/manifest.json -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolateboy/google-direct/HEAD/script.js --------------------------------------------------------------------------------