USO Chrome Extension (Chrome Manifest V3)

USO Chrome Extension (Chrome Manifest V3)

USO Extension for Chrome Native Messaging.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "background": {
    "service_worker": "usoBackground.js"
  },
  "action": {
    "default_icon": "uso.ico"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "usoContent.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "USO Extension for Chrome Native Messaging.",
  "icons": {
    "128": "uso128.png"
  },
  "name": "USO Chrome Extension (Chrome Manifest V3)",
  "permissions": [
    "scripting",
    "nativeMessaging",
    "tabs",
    "activeTab"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "file:///*/*"
  ],
  "version": "5.7.1.9"
}