No Redirect
No Redirect
No Redirect क्या है?
No Redirect 王成 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "No Redirect"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में No Redirect एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |