Jinshan Web Clipper

Jinshan Web Clipper

One lick save pages or content to WPS Docs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_CreationDoc_Operation_AppStoreBrief__",
  "version": "2.0.6",
  "default_locale": "zh_CN",
  "action": {
    "default_icon": "./assets/icon-512.png",
    "default_title": "__MSG_appName__"
  },
  "background": {
    "service_worker": "./kdocs/background/index.mjs"
  },
  "icons": {
    "16": "./assets/icon-16.png",
    "48": "./assets/icon-48.png",
    "128": "./assets/icon-128.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "incognito": "not_allowed",
  "commands": {
    "collect": {
      "suggested_key": {
        "default": "Alt+R",
        "mac": "Alt+R"
      },
      "description": "快捷键收藏"
    }
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "activeTab",
    "cookies",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "kdocs/contentScripts/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "kdocs/contentScripts/style.css",
        "kdocs/toast/index.html",
        "kdocs/permission/index.html",
        "kdocs/path/index.html",
        "kdocs/options/index.html",
        "kdocs/notice/index.html",
        "kdocs/login/index.html",
        "kdocs/loading/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "homepage_url": "https://p.kdocs.cn/s/QSQISBAACM",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}