No Redirect
No Redirect
Qu'est-ce que No Redirect ?
No Redirect est une extension Chrome développée par 王成, et sa fonction principale est "No Redirect".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension No Redirect
Téléchargez les fichiers d'extension No Redirect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | No Redirect |
ID | bgflddecjcadaapedngfifbkhghnpmep |
URL Officiel | https://chromewebstore.google.com/detail/no-redirect/bgflddecjcadaapedngfifbkhghnpmep |
Description | No Redirect |
Taille du Fichier | 184 KB |
Nombre d'Installations | 3,076 |
Version Actuelle | 1.2.0 |
Dernière Mise à Jour | 2020-03-04 |
Date de Publication | 2020-03-04 |
Évaluation | 3.13/5 Total 8 Évaluations |
Développeur | 王成 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/wangcheng678/no-redir-browser-extension |
URL de la Page d'Aide | https://github.com/wangcheng678/no-redir-browser-extension/issues |
Langues Prises en Charge | 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 } |