网址链接直达

网址链接直达

一个解决一些中文网站不让用户正常跳转其他网站的插件。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "homepage_url": "https://github.com/plusye/directLink",
  "description": "一个解决一些中文网站不让用户正常跳转其他网站的插件。",
  "default_locale": "zh_CN",
  "permissions": [],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.zhihu.com/*",
        "https://*.zhihu.com/*",
        "http://*.jianshu.com/*",
        "https://*.jianshu.com/*",
        "http://*.docs.qq.com/*",
        "https://*.docs.qq.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "version": "0.1.0",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}