├── .gitignore ├── .prettierrc ├── .travis.yml ├── README.md ├── images ├── form.png ├── form2.png ├── menu.png └── menu2.png ├── package.json ├── plugin.d.ts ├── plugin.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/README.md -------------------------------------------------------------------------------- /images/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/images/form.png -------------------------------------------------------------------------------- /images/form2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/images/form2.png -------------------------------------------------------------------------------- /images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/images/menu.png -------------------------------------------------------------------------------- /images/menu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/images/menu2.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/package.json -------------------------------------------------------------------------------- /plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/plugin.d.ts -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/plugin.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supnate/js-plugin/HEAD/test.js --------------------------------------------------------------------------------