├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── icons ├── icon-128.png └── icon-2048.png ├── scripts └── kodium.js └── templates └── chrome └── manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Kodium/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Kodium/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Kodium/HEAD/README.md -------------------------------------------------------------------------------- /icons/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Kodium/HEAD/icons/icon-128.png -------------------------------------------------------------------------------- /icons/icon-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Kodium/HEAD/icons/icon-2048.png -------------------------------------------------------------------------------- /scripts/kodium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Kodium/HEAD/scripts/kodium.js -------------------------------------------------------------------------------- /templates/chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxoul/Kodium/HEAD/templates/chrome/manifest.json --------------------------------------------------------------------------------