Linkis Breakout Redirect

Checks URL and redirects as required.

Linkis Breakout Redirect là gì?

Linkis Breakout Redirect là một tiện ích mở rộng Chrome được phát triển bởi http://www.idltd.com, và tính năng chính của nó là "Checks URL and redirects as required.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Linkis Breakout Redirect

Tải xuống các tệp mở rộng Linkis Breakout Redirect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Linkis Breakout Redirect Linkis Breakout Redirect
ID dpmganoapkolcdoinilblhnibmmggknp
URL Chính Thức https://chrome.google.com/webstore/detail/linkis-breakout-redirect/dpmganoapkolcdoinilblhnibmmggknp
Mô tả Checks URL and redirects as required.
Kích Thước Tệp 3.99 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 0.7
Cập Nhật Lần Cuối 2016-11-20
Ngày Phát Hành 2016-11-20
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển http://www.idltd.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}