划词小窗搜索

划词小窗搜索

划词点击悬浮图标或右键菜单打开小窗搜索,可自定义搜索引擎实现包括无广告小窗搜索、划词翻译、划词搜电影在内的各种个性需求。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "划词小窗搜索",
  "short_name": "划词搜索",
  "description": "划词点击悬浮图标或右键菜单打开小窗搜索,可自定义搜索引擎实现包括无广告小窗搜索、划词翻译、划词搜电影在内的各种个性需求。",
  "version": "4.23.1212",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "contextMenus",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "match_origin_as_fallback": true,
      "js": [
        "/options/defaultConfig.js",
        "/js/functions.js",
        "/js/setup.js",
        "/js/render.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/options/*",
        "/js/*",
        "/css/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options/setting.html",
  "manifest_version": 3
}