GDLink

GDLink

Open link directly from some redirect URL, such as: Google redirect URL.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GDLink",
  "description": "Open link directly from some redirect URL, such as: Google redirect URL.",
  "version": "1.2",
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "gdlink.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery.min.js",
        "bg.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "gdlink_chrome16.png",
    "48": "gdlink_chrome48.png",
    "128": "gdlink_chrome128.png"
  },
  "homepage_url": "http://www.zhaiduo.com/googledirectlink/",
  "content_security_policy": "script-src 'self'; object-src 'self'"
}