Examine source code of assClientApp

Inspect and view changes in assClientApp source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "author": "vehgroup9@gmail.com",
  "homepage_url": "https://ass.vehcom.com",
  "name": "assClientApp",
  "description": "the client application for account sharing system",
  "version": "1.1.3",
  "version_name": "1.1.3",
  "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",
    "cookies",
    "contextMenus"
  ],
  "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"
      ],
      "run_at": "document_end"
    }
  ],
  "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"
}