fasterLinks

For all you short URLs haters!

Was ist fasterLinks?

fasterLinks ist eine Chrome-Erweiterung, die von paul.leclercq entwickelt wurde, und ihr Hauptmerkmal ist "For all you short URLs haters!".

fasterLinks-Erweiterungs-CRX-Datei herunterladen

Laden Sie fasterLinks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name fasterLinks fasterLinks
ID ojggkiabpbjlckhpaphgdhhojgcpimah
Offizielle URL https://chromewebstore.google.com/detail/fasterlinks/ojggkiabpbjlckhpaphgdhhojgcpimah
Beschreibung For all you short URLs haters!
Dateigröße 183 KB
Installationsanzahl 19
Aktuelle Version 1.0.4
Letztes Update 2016-09-01
Veröffentlichungsdatum 2016-09-01
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler paul.leclercq
Zahlungsart free
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}