新标签页打开链接

新标签页打开链接

在新标签页打开链接

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "在新标签页打开链接",
  "version": "1.0.1",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "./third/jquery3.6.0/jquery.js",
        "menus.js"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "标签"
  },
  "icons": {
    "16": "label16.png",
    "32": "label32.png",
    "48": "label48.png",
    "128": "label128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "./third/f7/framework7-bundle.css",
        "./third/f7/framework7-bundle-rtl.css",
        "./third/f7/framework7-bundle.js",
        "./third/f7/iframe.js",
        "iframe.html",
        "confUtils.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "default_locale": "zh_CN"
}