assClientApp

assClientApp

the client application for account sharing system

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "[email protected]",
  "homepage_url": "https://ass.vehcom.com",
  "name": "assClientApp",
  "description": "the client application for account sharing system",
  "version": "1.1.0",
  "version_name": "1.1.0",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "nativeMessaging",
    "proxy",
    "webRequest",
    "webRequestAuthProvider",
    "scripting",
    "declarativeNetRequest",
    "system.cpu",
    "system.memory",
    "system.storage",
    "system.display"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon-16x16.png",
      "48": "icons/icon-48x48.png"
    },
    "default_popup": "www/index.html#/popup",
    "default_title": "assClientApp"
  },
  "options_page": "www/index.html#/options",
  "devtools_page": "www/index.html#/devtools",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "assets/content.css"
      ],
      "js": [
        "my-content-script.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": []
  },
  "short_name": "assClientApp",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}