├── .DS_Store ├── .gitignore ├── LICENSE ├── background.js ├── content-script.js ├── icons ├── .DS_Store ├── 128.png ├── 16.png ├── 192.png ├── 256.png ├── 32.png ├── 48.png ├── 512.png └── 64.png ├── image-tool.html ├── libs └── jszip.min.js ├── manifest.json ├── options.html ├── options.js ├── popup.css ├── popup.html ├── popup.js └── readme.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/LICENSE -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/background.js -------------------------------------------------------------------------------- /content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/content-script.js -------------------------------------------------------------------------------- /icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/icons/.DS_Store -------------------------------------------------------------------------------- /icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/icons/128.png -------------------------------------------------------------------------------- /icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/icons/16.png -------------------------------------------------------------------------------- /icons/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/icons/192.png -------------------------------------------------------------------------------- /icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/icons/256.png -------------------------------------------------------------------------------- /icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/icons/32.png -------------------------------------------------------------------------------- /icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/icons/48.png -------------------------------------------------------------------------------- /icons/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/icons/512.png -------------------------------------------------------------------------------- /icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/icons/64.png -------------------------------------------------------------------------------- /image-tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/image-tool.html -------------------------------------------------------------------------------- /libs/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/libs/jszip.min.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/manifest.json -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/options.js -------------------------------------------------------------------------------- /popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/popup.css -------------------------------------------------------------------------------- /popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/popup.html -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/popup.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jamailar/RedConvert/HEAD/readme.md --------------------------------------------------------------------------------