├── .gitattributes ├── .gitignore ├── LICENSE-APACHE-2.0 ├── bin └── cepy.js ├── cepy.js ├── defaults ├── build.js ├── bundle.js ├── config.js └── extension.js ├── lib ├── build.js ├── hosts.js ├── template.js └── zxp.js ├── package.json ├── readme.md └── res ├── .debug ├── manifest.bundle.cc.xml ├── manifest.bundle.cc2014.xml ├── manifest.bundle.cc2015.xml ├── manifest.bundle.cc2017.xml ├── manifest.bundle.cc2018.xml ├── manifest.bundle.cc2019.xml ├── manifest.bundle.cc2020.xml ├── manifest.bundle.cc2021.xml ├── manifest.bundle.cc2022.xml ├── manifest.extension.xml └── manifest.mxi.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-APACHE-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/LICENSE-APACHE-2.0 -------------------------------------------------------------------------------- /bin/cepy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/bin/cepy.js -------------------------------------------------------------------------------- /cepy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/cepy.js -------------------------------------------------------------------------------- /defaults/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/defaults/build.js -------------------------------------------------------------------------------- /defaults/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/defaults/bundle.js -------------------------------------------------------------------------------- /defaults/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/defaults/config.js -------------------------------------------------------------------------------- /defaults/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/defaults/extension.js -------------------------------------------------------------------------------- /lib/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/lib/build.js -------------------------------------------------------------------------------- /lib/hosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/lib/hosts.js -------------------------------------------------------------------------------- /lib/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/lib/template.js -------------------------------------------------------------------------------- /lib/zxp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/lib/zxp.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/readme.md -------------------------------------------------------------------------------- /res/.debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/.debug -------------------------------------------------------------------------------- /res/manifest.bundle.cc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.bundle.cc.xml -------------------------------------------------------------------------------- /res/manifest.bundle.cc2014.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.bundle.cc2014.xml -------------------------------------------------------------------------------- /res/manifest.bundle.cc2015.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.bundle.cc2015.xml -------------------------------------------------------------------------------- /res/manifest.bundle.cc2017.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.bundle.cc2017.xml -------------------------------------------------------------------------------- /res/manifest.bundle.cc2018.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.bundle.cc2018.xml -------------------------------------------------------------------------------- /res/manifest.bundle.cc2019.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.bundle.cc2019.xml -------------------------------------------------------------------------------- /res/manifest.bundle.cc2020.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.bundle.cc2020.xml -------------------------------------------------------------------------------- /res/manifest.bundle.cc2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.bundle.cc2021.xml -------------------------------------------------------------------------------- /res/manifest.bundle.cc2022.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.bundle.cc2022.xml -------------------------------------------------------------------------------- /res/manifest.extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.extension.xml -------------------------------------------------------------------------------- /res/manifest.mxi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcamarlinghi/cepy/HEAD/res/manifest.mxi.xml --------------------------------------------------------------------------------