├── .gitignore ├── LICENSE ├── README.md └── dist ├── background.js ├── icons ├── icon_128.png └── icon_48.png ├── manifest.json └── popup ├── popup.css ├── popup.html └── popup.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/README.md -------------------------------------------------------------------------------- /dist/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/dist/background.js -------------------------------------------------------------------------------- /dist/icons/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/dist/icons/icon_128.png -------------------------------------------------------------------------------- /dist/icons/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/dist/icons/icon_48.png -------------------------------------------------------------------------------- /dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/dist/manifest.json -------------------------------------------------------------------------------- /dist/popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/dist/popup/popup.css -------------------------------------------------------------------------------- /dist/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/dist/popup/popup.html -------------------------------------------------------------------------------- /dist/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgaozen/joosephExtension/HEAD/dist/popup/popup.js --------------------------------------------------------------------------------