fasterLinks

For all you short URLs haters!

fasterLinks क्या है?

fasterLinks paul.leclercq द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "For all you short URLs haters!"।

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

crx प्रारूप में fasterLinks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        For all you shortened URLs haters on Twitter or TweetDeck

Replaces all shortened URLs with real URLs without UTM to save precious seconds and finally know where we click without being tracked.




Twitter redirects every URLs to t.co in order to track clicks, OK cool, why not, but it makes us waste some precious seconds of our life everytime we click on a link on Twitter.
To counter that, this extension removes all links with a t.co redirect with their real URLs, and also display the full address on the tweet because who gives a f. to the 140 chars limit on Tweeter?


Open-source : https://github.com/polomarcus/faster-links                    

एक्सटेंशन की मूल जानकारी

नाम fasterLinks fasterLinks
ID ojggkiabpbjlckhpaphgdhhojgcpimah
आधिकारिक URL https://chromewebstore.google.com/detail/fasterlinks/ojggkiabpbjlckhpaphgdhhojgcpimah
विवरण For all you short URLs haters!
फ़ाइल का आकार 183 KB
स्थापना संख्या 19
वर्तमान संस्करण 1.0.4
अंतिम अपडेट 2016-09-01
प्रकाशन तिथि 2016-09-01
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर paul.leclercq
भुगतान के प्रकार free
समर्थित भाषाएँ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.4",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}