├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGES ├── README.md ├── crxmake ├── __init__.py └── crxmake.py ├── examples └── app │ ├── _locales │ └── en │ │ └── messages.json │ ├── manifest.json │ └── scripts │ └── background.js ├── legacy └── m2crypto-0.20.2-enable-rsa-pubout.patch ├── scripts └── crxmake ├── setup.py └── test ├── __init__.py └── test_crxmake.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | @bellbind - maintainer 2 | @mekarpeles -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/CHANGES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/README.md -------------------------------------------------------------------------------- /crxmake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/crxmake/__init__.py -------------------------------------------------------------------------------- /crxmake/crxmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/crxmake/crxmake.py -------------------------------------------------------------------------------- /examples/app/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/examples/app/_locales/en/messages.json -------------------------------------------------------------------------------- /examples/app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/examples/app/manifest.json -------------------------------------------------------------------------------- /examples/app/scripts/background.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy/m2crypto-0.20.2-enable-rsa-pubout.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/legacy/m2crypto-0.20.2-enable-rsa-pubout.patch -------------------------------------------------------------------------------- /scripts/crxmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/scripts/crxmake -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_crxmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellbind/crxmake-python/HEAD/test/test_crxmake.py --------------------------------------------------------------------------------