No Redirect

No Redirect

What is No Redirect?

No Redirect is a Chrome extension developed by 王成, and its main feature is "No Redirect".

Extension Screenshots

screenshot
screenshot

Download No Redirect Extension CRX File

Download No 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

                        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.                    

Extension Basic Information

Name No Redirect No Redirect
ID bgflddecjcadaapedngfifbkhghnpmep
Official URL https://chromewebstore.google.com/detail/no-redirect/bgflddecjcadaapedngfifbkhghnpmep
Description No Redirect
File Size 184 KB
Installation Count 3,076
Current Version 1.2.0
Last Updated 2020-03-04
Publish Date 2020-03-04
Rating 3.13/5 Total 8 Ratings
Developer 王成
Email [email protected]
Payment Type free
Extension Website https://github.com/wangcheng678/no-redir-browser-extension
Help Page URL https://github.com/wangcheng678/no-redir-browser-extension/issues
Supported Languages 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
}