USO  Chrome  Extension

USO Chrome Extension

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",
  "background": {
    "scripts": [
      "usoBackground.js"
    ]
  },
  "browser_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"
  },
  "manifest_version": 2,
  "name": "USO  Chrome  Extension",
  "permissions": [
    "nativeMessaging",
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "file:///*/*"
  ],
  "version": "5.6.2.7"
}