Linkis Breakout Redirect

Checks URL and redirects as required.

What is Linkis Breakout Redirect?

Linkis Breakout Redirect is a Chrome extension developed by http://www.idltd.com, and its main feature is "Checks URL and redirects as required.".

Extension Screenshots

screenshot

Download Linkis Breakout Redirect Extension CRX File

Download Linkis Breakout Redirect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Linkis Breakout Redirect Linkis Breakout Redirect
ID dpmganoapkolcdoinilblhnibmmggknp
Official URL https://chrome.google.com/webstore/detail/linkis-breakout-redirect/dpmganoapkolcdoinilblhnibmmggknp
Description Checks URL and redirects as required.
File Size 3.99 KB
Installation Count 15
Current Version 0.7
Last Updated 2016-11-20
Publish Date 2016-11-20
Rating 5.00/5 Total 3 Ratings
Developer http://www.idltd.com
Payment Type free
Supported Languages 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"
    ]
}