No Redirect

No Redirect

Co je No Redirect?

No Redirect je rozšíření Chrome vyvinuté 王成, a jeho hlavní funkcí je „No Redirect“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření No Redirect

Stáhněte si soubory rozšíření No Redirect ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název No Redirect No Redirect
ID bgflddecjcadaapedngfifbkhghnpmep
Oficiální URL https://chromewebstore.google.com/detail/no-redirect/bgflddecjcadaapedngfifbkhghnpmep
Popis No Redirect
Velikost souboru 184 KB
Počet instalací 3,076
Aktuální Verze 1.2.0
Poslední Aktualizace 2020-03-04
Datum Vydání 2020-03-04
Hodnocení 3.13/5 Celkem 8 Hodnocení
Vývojář 王成
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/wangcheng678/no-redir-browser-extension
URL Stránky Nápovědy https://github.com/wangcheng678/no-redir-browser-extension/issues
Podporované Jazyky 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
}