example.js 410 B

12345678910111213141516
  1. var PLUGIN_NAME = "test.js";
  2. var PLUGIN_FUNCTION = "test js plugin";
  3. var PLUGIN_DESCRIPTION = "testt"
  4. var PLUGIN_AUTHOR = "rainestorme";
  5. var PLUGIN_VERSION = 1;
  6. function plugin_init() {
  7. // run on plugin initialization, when a helper tab is opened
  8. console.log("js init!!!1!");
  9. }
  10. function plugin_main() {
  11. // this is run when you click the button in the helper extension
  12. alert("under construction!");
  13. }