No Redirect

No Redirect

No Redirect là gì?

No Redirect là một tiện ích mở rộng Chrome được phát triển bởi 王成, và tính năng chính của nó là "No Redirect".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng No 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

                        Some websites change the links on their pages to "redirect url". This sucks.

For example: a link to www.google.com in Slack is like "https://slack-redir.net/link?url=https://www.google.com".

This means when you click on these links, instead of going to the target location, you are actrually visiting "slack-redir.net" server (which is controlled by Slack obviously) and the server will then "redirect" you to the real location.This means if slack server is slow or down, you can't go to the location.

This extension uses Chrome API to intercept the link before the navigation. It will extrack the real url from the "redirect" url and navigate you to the real url directly.                    

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

Tên No Redirect No Redirect
ID bgflddecjcadaapedngfifbkhghnpmep
URL Chính Thức https://chromewebstore.google.com/detail/no-redirect/bgflddecjcadaapedngfifbkhghnpmep
Mô tả No Redirect
Kích Thước Tệp 184 KB
Số Lần Cài Đặt 3,076
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2020-03-04
Ngày Phát Hành 2020-03-04
Đánh Giá 3.13/5 Tổng số 8 Đánh Giá
Nhà Phát Triển 王成
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/wangcheng678/no-redir-browser-extension
URL Trang Trợ Giúp https://github.com/wangcheng678/no-redir-browser-extension/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Redirect",
    "version": "1.2.0",
    "description": "No Redirect",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "img\/icon_awesome_face_16.png",
        "32": "img\/icon_awesome_face_32.png",
        "48": "img\/icon_awesome_face_48.png",
        "128": "img\/icon_awesome_face_128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "webNavigation",
        "storage",
        "notifications"
    ],
    "manifest_version": 2
}