GDLink

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

GDLink क्या है?

GDLink http://www.zhaiduo.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open link directly from some redirect URL, such as: Google redirect URL."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GDLink एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}