GDLink

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

什麼是GDLink?

GDLink是由http://www.zhaiduo.com開發的Chrome擴展程式,該擴展的主要功能是“Open link directly from some redirect URL, such as: Google redirect URL.”。

擴展截圖

screenshot
screenshot

下載GDLink擴展crx文件

下載GDLink擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        » Why I do this Chrome extension?

In Google search result:

We often get this link to connect a site:
	http://www.google.com/url?sa=t&source=web&...&url=https%3A%2F%2Faddons.mozilla.org...
So what if Open the url directly:
	https://addons.mozilla.org...

» More features
Selected text to link
Open link with DanMen proxy in right click menu

» Testimonial
Heiko from Germany:

"The reason to install Your Google Direct Link is, that I don't want to inform
google which page I will read..."
Jeff from USA:

"Google search results are redirected, which is annoying, as it's not easy to 
copy paste the URL without visiting the site. If there would be no redirect, 
I would just right-click the link in the search results and 
select "Open link address"."                    

擴展基本資訊

名稱 GDLink GDLink
ID fkpnkkhfbolcgemehnkcjehhgajefihp
官方網址 https://chrome.google.com/webstore/detail/gdlink/fkpnkkhfbolcgemehnkcjehhgajefihp
簡介 Open link directly from some redirect URL, such as: Google redirect URL.
檔案大小 56.06 KB
安裝次數 130
目前版本 1.2
更新時間 2014-01-09
上架時間 2014-01-09
開發者 http://www.zhaiduo.com
付費類型 free
擴展官網 http://www.zhaiduo.com/googledirectlink/
說明頁面URL http://www.zhaiduo.com/googledirectlink/
支援的語言 en
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",
        ""
    ],
    "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'"
}