├── .eslintignore ├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── extension.js ├── install.sh ├── install_dependencies.sh ├── package.json ├── test ├── extension.spec.js └── test.sh └── uninstall.sh /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/**/*.js -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/README.md -------------------------------------------------------------------------------- /extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/extension.js -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/install.sh -------------------------------------------------------------------------------- /install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/install_dependencies.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/package.json -------------------------------------------------------------------------------- /test/extension.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/test/extension.spec.js -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmwohl/Openframe-OF/HEAD/uninstall.sh --------------------------------------------------------------------------------