Free Copy

Free Copy

一个解放网页限制,快速抓取网页图片的小工具(支持 img / background / svg)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Free Copy",
  "short_name": "图片抓取工具",
  "version": "0.1.0",
  "description": "一个解放网页限制,快速抓取网页图片的小工具(支持 img / background / svg)",
  "icons": {
    "16": "img/icon/16.png",
    "48": "img/icon/48.png",
    "128": "img/icon/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [
        "css/free-copy.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": "img/icon/48.png",
    "default_title": "快速抓取网页图片的小工具",
    "default_popup": "html/popup.html"
  },
  "homepage_url": "https://freecopy.yangtuos.com",
  "web_accessible_resources": [
    {
      "resources": [
        "js/free-copy.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs"
  ]
}