Linkis Breakout Redirect

Checks URL and redirects as required.

Was ist Linkis Breakout Redirect?

Linkis Breakout Redirect ist eine Chrome-Erweiterung, die von http://www.idltd.com entwickelt wurde, und ihr Hauptmerkmal ist "Checks URL and redirects as required.".

Erweiterungsscreenshots

screenshot

Linkis Breakout Redirect-Erweiterungs-CRX-Datei herunterladen

Laden Sie Linkis Breakout Redirect-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

                        I hate Linkis - it screws up URL's in tweets and makes it hard to break out. This plug in ( mainly taken from http://superuser.com/questions/284110/redirect-urls-in-chrome ) will automatically redirect to the original source page once the linkis version has loaded.

v0.7
Previous fix broke YouTube link processing, now that works as well!

v0.6
Fixed an occasional looping problem if original link not found.
Now will look harder and not loop if not found.

v0.5
Handles more links better(!)

v0.4
Handles YouTube links

v0.3
Initial Version                    

Grundlegende Informationen zur Erweiterung

Name Linkis Breakout Redirect Linkis Breakout Redirect
ID dpmganoapkolcdoinilblhnibmmggknp
Offizielle URL https://chrome.google.com/webstore/detail/linkis-breakout-redirect/dpmganoapkolcdoinilblhnibmmggknp
Beschreibung Checks URL and redirects as required.
Dateigröße 3.99 KB
Installationsanzahl 15
Aktuelle Version 0.7
Letztes Update 2016-11-20
Veröffentlichungsdatum 2016-11-20
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler http://www.idltd.com
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Linkis Breakout Redirect",
    "version": "0.7",
    "description": "Checks URL and redirects as required.",
    "background": {
        "page": "bg.html"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/linkis.com\/*",
                "https:\/\/linkis.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}