表单助手

表单助手

Form Helper是为Web开发者和测试人员开发的表单数据自动填充,并可以自定义mock数据插件,支持React、Vue、AngularJs等构建的网站。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "表单助手",
  "description": "Form Helper是为Web开发者和测试人员开发的表单数据自动填充,并可以自定义mock数据插件,支持React、Vue、AngularJs等构建的网站。",
  "version": "2.1.3",
  "icons": {
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "js/background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "declarativeNetRequestFeedback",
    "tabs",
    "contextMenus",
    "clipboardRead",
    "clipboardWrite",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  }
}