WebSpy-外贸客户开发好帮手

WebSpy-外贸客户开发好帮手

访问网页的同时快速捕获联系方式等更多信息

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebSpy-外贸客户开发好帮手",
  "version": "1.3",
  "manifest_version": 3,
  "description": "访问网页的同时快速捕获联系方式等更多信息",
  "icons": {
    "16": "image/icon-16.png",
    "48": "image/icon-48.png",
    "128": "image/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "image/icon-16.png",
      "48": "image/icon-48.png",
      "128": "image/icon-128.png"
    },
    "default_popup": "/html/popup.html",
    "default_title": "点击查看全部数据"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://localhost:*/*",
      "*://127.0.0.1:*/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery-3.6.0.min.js",
        "lib/bootstrap/js/bootstrap.min.js",
        "lib/libphonenumber-min.js",
        "js/content.js"
      ],
      "css": [
        "lib/main.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/html/main.html",
        "/lib/bootstrap/css/bootstrap.min.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_ui": {
    "page": "/html/setting.html"
  }
}