├── .gitignore ├── LICENCE ├── NOTICE ├── README.md ├── createext.bat ├── createext.sh ├── deployext.bat ├── deployext.sh ├── disabledebugmode.sh ├── execextendscript.bat ├── execextendscript.sh ├── setdebugmode.bat ├── setdebugmode.sh └── templates ├── basic ├── .debug ├── CSXS │ └── manifest.xml ├── css │ └── styles.css ├── index.html ├── js │ └── main.js └── jsx │ └── hostscript.jsx ├── default ├── .debug ├── CSXS │ └── manifest.xml ├── css │ ├── boilerplate.css │ ├── styles.css │ └── topcoat-desktop-dark.min.css ├── index.html ├── js │ ├── libs │ │ ├── CSInterface-4.0.0.js │ │ ├── CSInterface.js │ │ └── jquery-2.0.2.min.js │ ├── main.js │ └── themeManager.js └── jsx │ └── hostscript.jsx ├── theme ├── .debug ├── CSXS │ └── manifest.xml ├── css │ ├── boilerplate.css │ └── styles.css ├── index.html ├── js │ ├── libs │ │ ├── CSInterface.js │ │ └── jquery-2.0.2.min.js │ ├── main.js │ └── themeManager.js └── jsx │ └── hostscript.jsx └── topcoat ├── .debug ├── CSXS └── manifest.xml ├── css ├── boilerplate.css ├── styles.css └── topcoat-desktop-dark.min.css ├── index.html ├── js ├── libs │ ├── CSInterface.js │ └── jquery-2.0.2.min.js ├── main.js └── themeManager.js └── jsx └── hostscript.jsx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/LICENCE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/README.md -------------------------------------------------------------------------------- /createext.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/createext.bat -------------------------------------------------------------------------------- /createext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/createext.sh -------------------------------------------------------------------------------- /deployext.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/deployext.bat -------------------------------------------------------------------------------- /deployext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/deployext.sh -------------------------------------------------------------------------------- /disabledebugmode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/disabledebugmode.sh -------------------------------------------------------------------------------- /execextendscript.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/execextendscript.bat -------------------------------------------------------------------------------- /execextendscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/execextendscript.sh -------------------------------------------------------------------------------- /setdebugmode.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/setdebugmode.bat -------------------------------------------------------------------------------- /setdebugmode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/setdebugmode.sh -------------------------------------------------------------------------------- /templates/basic/.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/basic/.debug -------------------------------------------------------------------------------- /templates/basic/CSXS/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/basic/CSXS/manifest.xml -------------------------------------------------------------------------------- /templates/basic/css/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/basic/index.html -------------------------------------------------------------------------------- /templates/basic/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/basic/js/main.js -------------------------------------------------------------------------------- /templates/basic/jsx/hostscript.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/basic/jsx/hostscript.jsx -------------------------------------------------------------------------------- /templates/default/.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/.debug -------------------------------------------------------------------------------- /templates/default/CSXS/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/CSXS/manifest.xml -------------------------------------------------------------------------------- /templates/default/css/boilerplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/css/boilerplate.css -------------------------------------------------------------------------------- /templates/default/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/css/styles.css -------------------------------------------------------------------------------- /templates/default/css/topcoat-desktop-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/css/topcoat-desktop-dark.min.css -------------------------------------------------------------------------------- /templates/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/index.html -------------------------------------------------------------------------------- /templates/default/js/libs/CSInterface-4.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/js/libs/CSInterface-4.0.0.js -------------------------------------------------------------------------------- /templates/default/js/libs/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/js/libs/CSInterface.js -------------------------------------------------------------------------------- /templates/default/js/libs/jquery-2.0.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/js/libs/jquery-2.0.2.min.js -------------------------------------------------------------------------------- /templates/default/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/js/main.js -------------------------------------------------------------------------------- /templates/default/js/themeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/js/themeManager.js -------------------------------------------------------------------------------- /templates/default/jsx/hostscript.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/default/jsx/hostscript.jsx -------------------------------------------------------------------------------- /templates/theme/.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/.debug -------------------------------------------------------------------------------- /templates/theme/CSXS/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/CSXS/manifest.xml -------------------------------------------------------------------------------- /templates/theme/css/boilerplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/css/boilerplate.css -------------------------------------------------------------------------------- /templates/theme/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/css/styles.css -------------------------------------------------------------------------------- /templates/theme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/index.html -------------------------------------------------------------------------------- /templates/theme/js/libs/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/js/libs/CSInterface.js -------------------------------------------------------------------------------- /templates/theme/js/libs/jquery-2.0.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/js/libs/jquery-2.0.2.min.js -------------------------------------------------------------------------------- /templates/theme/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/js/main.js -------------------------------------------------------------------------------- /templates/theme/js/themeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/js/themeManager.js -------------------------------------------------------------------------------- /templates/theme/jsx/hostscript.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/theme/jsx/hostscript.jsx -------------------------------------------------------------------------------- /templates/topcoat/.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/.debug -------------------------------------------------------------------------------- /templates/topcoat/CSXS/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/CSXS/manifest.xml -------------------------------------------------------------------------------- /templates/topcoat/css/boilerplate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/css/boilerplate.css -------------------------------------------------------------------------------- /templates/topcoat/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/css/styles.css -------------------------------------------------------------------------------- /templates/topcoat/css/topcoat-desktop-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/css/topcoat-desktop-dark.min.css -------------------------------------------------------------------------------- /templates/topcoat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/index.html -------------------------------------------------------------------------------- /templates/topcoat/js/libs/CSInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/js/libs/CSInterface.js -------------------------------------------------------------------------------- /templates/topcoat/js/libs/jquery-2.0.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/js/libs/jquery-2.0.2.min.js -------------------------------------------------------------------------------- /templates/topcoat/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/js/main.js -------------------------------------------------------------------------------- /templates/topcoat/js/themeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/js/themeManager.js -------------------------------------------------------------------------------- /templates/topcoat/jsx/hostscript.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidderaedt/CC-EXT-SDK/HEAD/templates/topcoat/jsx/hostscript.jsx --------------------------------------------------------------------------------