Linkis Breakout Redirect

Checks URL and redirects as required.

什么是Linkis Breakout Redirect?

Linkis Breakout Redirect是由http://www.idltd.com开发的Chrome扩展程序,该扩展的主要功能是“Checks URL and redirects as required.”。

扩展截图

screenshot

下载Linkis Breakout Redirect扩展crx文件

下载Linkis Breakout Redirect扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Linkis Breakout Redirect Linkis Breakout Redirect
ID dpmganoapkolcdoinilblhnibmmggknp
官方URL https://chrome.google.com/webstore/detail/linkis-breakout-redirect/dpmganoapkolcdoinilblhnibmmggknp
简介 Checks URL and redirects as required.
文件大小 3.99 KB
安装次数 15
当前版本 0.7
更新时间 2016-11-20
上架时间 2016-11-20
评分 5.00/5 共3次评分
开发者 http://www.idltd.com
付费类型 free
支持的语言 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"
    ]
}