Linkis Breakout Redirect

Checks URL and redirects as required.

Co je Linkis Breakout Redirect?

Linkis Breakout Redirect je rozšíření Chrome vyvinuté http://www.idltd.com, a jeho hlavní funkcí je „Checks URL and redirects as required.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Linkis Breakout Redirect

Stáhněte si soubory rozšíření Linkis Breakout Redirect ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Linkis Breakout Redirect Linkis Breakout Redirect
ID dpmganoapkolcdoinilblhnibmmggknp
Oficiální URL https://chrome.google.com/webstore/detail/linkis-breakout-redirect/dpmganoapkolcdoinilblhnibmmggknp
Popis Checks URL and redirects as required.
Velikost souboru 3.99 KB
Počet instalací 15
Aktuální Verze 0.7
Poslední Aktualizace 2016-11-20
Datum Vydání 2016-11-20
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář http://www.idltd.com
Typ Platby free
Podporované Jazyky 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"
    ]
}