Examine source code of i-Automation365

Inspect and view changes in i-Automation365 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "i-Automation365",
  "description": "浏览器自动化辅助工具",
  "version": "1.3.2",
  "action": {
    "default_title": "插件",
    "default_popup": "/src/popup/index.html"
  },
  "permissions": [
    "tabs",
    "scripting",
    "activeTab",
    "nativeMessaging"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js",
        "plugins/babel.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}