No Redirect

No Redirect

什麼是No Redirect?

No Redirect是由王成開發的Chrome擴展程式,該擴展的主要功能是“No Redirect”。

擴展截圖

screenshot
screenshot

下載No Redirect擴展crx文件

下載No Redirect擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 No Redirect No Redirect
ID bgflddecjcadaapedngfifbkhghnpmep
官方網址 https://chromewebstore.google.com/detail/no-redirect/bgflddecjcadaapedngfifbkhghnpmep
簡介 No Redirect
檔案大小 184 KB
安裝次數 3,076
目前版本 1.2.0
更新時間 2020-03-04
上架時間 2020-03-04
評分 3.13/5 共 8 次評分
開發者 王成
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/wangcheng678/no-redir-browser-extension
說明頁面URL https://github.com/wangcheng678/no-redir-browser-extension/issues
支援的語言 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
}