auto script

一个简单的网页自动化脚本工具 功能: 1. 录制网页的点击,滚动,输入事件 2. 自动化运行录制的事件 3. 测试自动化运行的结果是否正确.
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",
  "name": "auto script",
  "version": "1.4",
  "manifest_version": 3,
  "action": {},
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-1.8.3.js",
        "js/bind-unbind.js",
        "js/highlight.js"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "externally_connectable": {
    "matches": [
      "http://localhost:63342/*",
      "http://localhost:8089/*",
      "https://isp.ibanbu.com/*"
    ]
  }
}