Native Script Caller

Native Script Caller

Custom MENU to execute user Javascript and arbitary local PC programs, and display custom pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Native Script Caller",
  "version": "2.1.7",
  "manifest_version": 3,
  "description": "Custom MENU to execute user Javascript and arbitary local PC programs, and display custom pages",
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "nativeMessaging",
    "storage",
    "activeTab",
    "contextMenus",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.google.com/search?q=+Chrome+Store+Native+Script+Caller*"
      ],
      "js": [
        "content_script_update.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Native Script Caller",
    "default_popup": "popup.html"
  },
  "options_page": "/vue/dist/index.html",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "sandbox": {
    "pages": [
      "/sandbox.html"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}