GDLink

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

GDLinkคืออะไร?

GDLink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.zhaiduo.com และคุณลักษณะหลักของมันคือ "Open link directly from some redirect URL, such as: Google redirect URL."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GDLink

ดาวน์โหลดไฟล์ส่วนขยาย 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
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'"
}