Script Caller

Script Caller

Customizable menu to call user scripts at browser and/or local PC.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Script Caller",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "Customizable menu to call user scripts at browser and/or local PC.",
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "nativeMessaging",
    "storage",
    "activeTab"
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_title": "Script Caller",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}