fasterLinks

For all you short URLs haters!

Cos'è fasterLinks?

fasterLinks è un'estensione di Chrome sviluppata da paul.leclercq, e la sua funzione principale è "For all you short URLs haters!".

Scarica il file CRX dell'estensione fasterLinks

Scarica i file di estensione fasterLinks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome fasterLinks fasterLinks
ID ojggkiabpbjlckhpaphgdhhojgcpimah
URL Ufficiale https://chromewebstore.google.com/detail/fasterlinks/ojggkiabpbjlckhpaphgdhhojgcpimah
Descrizione For all you short URLs haters!
Dimensione del File 183 KB
Conteggio Installazioni 19
Versione Corrente 1.0.4
Ultimo Aggiornamento 2016-09-01
Data di Pubblicazione 2016-09-01
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore paul.leclercq
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
    ]
}