fasterLinks

For all you short URLs haters!

Vad är fasterLinks?

fasterLinks är en Chrome-tillägg utvecklad av paul.leclercq, och dess huvudfunktion är "For all you short URLs haters!".

Ladda ner fasterLinks-förlängningens CRX-fil

Ladda ner fasterLinks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn fasterLinks fasterLinks
ID ojggkiabpbjlckhpaphgdhhojgcpimah
Officiell webbadress https://chromewebstore.google.com/detail/fasterlinks/ojggkiabpbjlckhpaphgdhhojgcpimah
Beskrivning For all you short URLs haters!
Filstorlek 183 KB
Antal Installationer 19
Aktuell Version 1.0.4
Senast Uppdaterad 2016-09-01
Publiceringsdatum 2016-09-01
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare paul.leclercq
Betalningssätt free
Stödda Språk 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:\/\/*\/*"
    ]
}