Examine source code of open_link_in_new_tab

Inspect and view changes in open_link_in_new_tab source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "open_link_in_new_tab",
  "version": "0.0.6",
  "manifest_version": 3,
  "description": "链接在新标签页打开。1. 排除了href: 以#开头的, 空, javascript:;, javascript:js_method();, javascript:void(0);;2. 为了自动化,添加3秒运行一次的定时器,担心影响性能请关闭插件。",
  "author": "郑炜",
  "icons": {
    "16": "icons/app_icon.png",
    "32": "icons/app_icon.png",
    "48": "icons/app_icon.png",
    "128": "icons/app_icon.png"
  },
  "action": {
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/content.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options/options.html",
  "options_ui": {
    "page": "options/options.html",
    "scripts": [
      "options/options.js"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}