├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── background ├── bootstrap.js └── redirect.js ├── images ├── duckDuckGo.png ├── google.png ├── logo-128.png ├── logo-32.png ├── logo-64.png └── yahoo.png ├── manifest.json ├── package.json ├── src ├── app │ ├── app.jsx │ └── app.scss ├── options.html └── popup.jsx └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/README.md -------------------------------------------------------------------------------- /background/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/background/bootstrap.js -------------------------------------------------------------------------------- /background/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/background/redirect.js -------------------------------------------------------------------------------- /images/duckDuckGo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/images/duckDuckGo.png -------------------------------------------------------------------------------- /images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/images/google.png -------------------------------------------------------------------------------- /images/logo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/images/logo-128.png -------------------------------------------------------------------------------- /images/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/images/logo-32.png -------------------------------------------------------------------------------- /images/logo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/images/logo-64.png -------------------------------------------------------------------------------- /images/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/images/yahoo.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/src/app/app.jsx -------------------------------------------------------------------------------- /src/app/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/src/app/app.scss -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/src/options.html -------------------------------------------------------------------------------- /src/popup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/src/popup.jsx -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3dotgg/Chrometana/HEAD/webpack.config.js --------------------------------------------------------------------------------