├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── background.js ├── ff.png ├── manifest.json ├── privacy-policy.md └── screenshot-1.3.png /.gitignore: -------------------------------------------------------------------------------- 1 | chrome-ff.zip 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siadat/chrome-ff/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siadat/chrome-ff/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siadat/chrome-ff/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siadat/chrome-ff/HEAD/background.js -------------------------------------------------------------------------------- /ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siadat/chrome-ff/HEAD/ff.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siadat/chrome-ff/HEAD/manifest.json -------------------------------------------------------------------------------- /privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siadat/chrome-ff/HEAD/privacy-policy.md -------------------------------------------------------------------------------- /screenshot-1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siadat/chrome-ff/HEAD/screenshot-1.3.png --------------------------------------------------------------------------------