No Redirect
No Redirect
Cos'è No Redirect?
No Redirect è un'estensione di Chrome sviluppata da 王成, e la sua funzione principale è "No Redirect".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione No Redirect
Scarica i file di estensione No Redirect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | No Redirect |
ID | bgflddecjcadaapedngfifbkhghnpmep |
URL Ufficiale | https://chromewebstore.google.com/detail/no-redirect/bgflddecjcadaapedngfifbkhghnpmep |
Descrizione | No Redirect |
Dimensione del File | 184 KB |
Conteggio Installazioni | 3,076 |
Versione Corrente | 1.2.0 |
Ultimo Aggiornamento | 2020-03-04 |
Data di Pubblicazione | 2020-03-04 |
Valutazione | 3.13/5 Totale 8 Valutazioni |
Sviluppatore | 王成 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/wangcheng678/no-redir-browser-extension |
URL della Pagina di Aiuto | https://github.com/wangcheng678/no-redir-browser-extension/issues |
Lingue Supportate | 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 } |