No Redirect
No Redirect
Τι είναι το No Redirect;
Το No Redirect είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 王成, και η κύρια λειτουργία του είναι "No Redirect".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης No Redirect
Λήψη αρχείων επέκτασης 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 |
ID | bgflddecjcadaapedngfifbkhghnpmep |
Επίσημο URL | 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 } |