StartLocalProcess123

StartLocalProcess123

Start a local process

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "StartLocalProcess123",
  "version": "1.0.5",
  "description": "Start a local process",
  "icons": {
    "128": "icon-128.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "nativeMessaging"
  ],
  "default_locale": "en_US",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}