UCM Chrome Extension

UCM Chrome Extension

UCM Chrome Extension to auto login for Chrome launcher

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UCM Chrome Extension",
  "action": {},
  "manifest_version": 3,
  "version": "6.0.4.0416",
  "description": "UCM Chrome Extension to auto login for Chrome launcher",
  "permissions": [
    "activeTab",
    "nativeMessaging"
  ],
  "icons": {
    "128": "ucm128.png"
  },
  "background": {
    "service_worker": "ucmBackground.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "jquery-2.1.4.min.js",
        "ucmContent.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "run_at": "document_start"
    }
  ]
}