SecuhapEx

SecuhapEx

This extension connect the local resource.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SecuhapEx",
  "description": "This extension connect the local resource.",
  "version": "2.4.2",
  "author": "secuhap",
  "content_scripts": [
    {
      "js": [
        "js/contentscript.js"
      ],
      "matches": [
        "http://*.kepco.net/*",
        "https://*.kepco.net/*",
        "http://*.khnp.se.hn/*",
        "https://*.khnp.se.hn/*",
        "http://*.secuhap.com/*",
        "https://*.secuhap.com/*",
        "http://127.0.0.1/*",
        "https://127.0.0.1/*",
        "http://10.151.190.179/*",
        "https://10.151.190.179/*",
        "http://localhost/*",
        "https://localhost/*",
        "http://*/smart*",
        "https://*/smart*",
        "http://*/secuhap/*",
        "https://*/secuhap/*",
        "http://*/kpro/*",
        "https://*/kpro/*",
        "file:///*/secuhap/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "icons": {
    "16": "/images/16_icon.png",
    "32": "/images/32_icon.png",
    "48": "/images/48_icon.png",
    "128": "/images/128_icon.png"
  }
}