Black widow

Black widow

Click to get target url, then you can do whatever you like.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Black widow",
  "short_name": "Click to get target url, then you can do whatever you like.",
  "description": "Click to get target url, then you can do whatever you like.",
  "version": "1.2",
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {},
  "browser_action": {
    "default_icon": "48.png",
    "default_title": "black widow"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://movie.douban.com/subject_search*",
        "http://so.iqiyi.com/so/q*",
        "https://v.qq.com/x/search/?q*",
        "https://search.bilibili.com/all?keyword*"
      ],
      "css": [
        "modal.css"
      ],
      "js": [
        "jquery.js",
        "addEvent.js"
      ],
      "run_at": "document_end"
    }
  ]
}