├── .eslintrc ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── css └── googleFearch.css ├── demo.gif ├── icons ├── icon.png ├── icon128.png ├── icon16.png └── icon48.png ├── manifest.json ├── options ├── css │ └── options.css ├── js │ └── options.js └── options.html ├── package.json ├── popup ├── css │ └── popup.css ├── images │ ├── gear-icon.svg │ └── searchIcon.png ├── js │ └── popup.js └── popup.html └── scripts ├── googleCS.js └── googleFearch.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/README.md -------------------------------------------------------------------------------- /css/googleFearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/css/googleFearch.css -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/demo.gif -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/icons/icon.png -------------------------------------------------------------------------------- /icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/icons/icon128.png -------------------------------------------------------------------------------- /icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/icons/icon16.png -------------------------------------------------------------------------------- /icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/icons/icon48.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/manifest.json -------------------------------------------------------------------------------- /options/css/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/options/css/options.css -------------------------------------------------------------------------------- /options/js/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/options/js/options.js -------------------------------------------------------------------------------- /options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/options/options.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/package.json -------------------------------------------------------------------------------- /popup/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/popup/css/popup.css -------------------------------------------------------------------------------- /popup/images/gear-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/popup/images/gear-icon.svg -------------------------------------------------------------------------------- /popup/images/searchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/popup/images/searchIcon.png -------------------------------------------------------------------------------- /popup/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/popup/js/popup.js -------------------------------------------------------------------------------- /popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/popup/popup.html -------------------------------------------------------------------------------- /scripts/googleCS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/scripts/googleCS.js -------------------------------------------------------------------------------- /scripts/googleFearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NITDgpOS/Fearch/HEAD/scripts/googleFearch.js --------------------------------------------------------------------------------