Linkis Breakout Redirect

Checks URL and redirects as required.

Wat is Linkis Breakout Redirect?

Linkis Breakout Redirect is een Chrome-extensie ontwikkeld door http://www.idltd.com, en de belangrijkste functie is "Checks URL and redirects as required.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Linkis Breakout Redirect

Download Linkis Breakout Redirect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Linkis Breakout Redirect Linkis Breakout Redirect
ID dpmganoapkolcdoinilblhnibmmggknp
Officiële URL https://chrome.google.com/webstore/detail/linkis-breakout-redirect/dpmganoapkolcdoinilblhnibmmggknp
Beschrijving Checks URL and redirects as required.
Bestandsgrootte 3.99 KB
Aantal Installaties 15
Huidige Versie 0.7
Laatst Bijgewerkt 2016-11-20
Publicatiedatum 2016-11-20
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar http://www.idltd.com
Betalingswijze free
Ondersteunde Talen 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"
    ]
}