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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        » 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
공식 URL 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'"
}