QDWExec Native messaging New

QDWExec Native messaging New

Execute method/URL Plugin for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "QDWExec Native messaging New",
  "description": "Execute method/URL Plugin for Chrome",
  "version": "2.0.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "qsi.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "qsi_contentscript.js"
      ],
      "matches": [
        "http://*.qsidentalweb.com/*",
        "https://*.qsidentalweb.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "qsi.png"
  },
  "options_page": "options.htm",
  "permissions": [
    "nativeMessaging"
  ],
  "host_permissions": [
    "http://*.qsidentalweb.com/*",
    "https://*.qsidentalweb.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "apiscript.js"
      ],
      "matches": [
        "http://*.qsidentalweb.com/*",
        "https://*.qsidentalweb.com/*"
      ]
    }
  ]
}