URL Rewriter
Rewrite URLs using custom rules.
URL Rewriter क्या है?
URL Rewriter John Ahlgren द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Rewrite URLs using custom rules."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में URL Rewriter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Rewrite omnibox strings into desired URLs. Configure the rewrite rules you'd like in the extention options. Rules are of the form: regex_with_capturing_groups --> some_url_with_%s1_and_%s2 Where %s1 and %s2 are the first and second capture groups, respectively. For example, the following rules may be useful: # Fallback: grab first URL and use it .*(https?://[^\s]+).* --> %s1 .*(www\.[^\s]+).* --> %s1 .*(www\d+\.[^\s]+).* --> %s1 (.*) --> https://www.google.com/search?q=%s1 The first identifies a url starting with http and will go to that url. The second identifies urls with www. The third identifies urls such as www2, www3, etc The fourth rule falls back on a google search for the entire string.
एक्सटेंशन की मूल जानकारी
नाम | URL Rewriter |
ID | khncccgpokiedblbaahpfchghohlahje |
आधिकारिक URL | https://chromewebstore.google.com/detail/url-rewriter/khncccgpokiedblbaahpfchghohlahje |
विवरण | Rewrite URLs using custom rules. |
फ़ाइल का आकार | 11.3 KB |
स्थापना संख्या | 79 |
वर्तमान संस्करण | 2.1 |
अंतिम अपडेट | 2022-12-30 |
प्रकाशन तिथि | 2022-04-19 |
रेटिंग | 1.00/5 कुल 1 रेटिंग्स |
डेवलपर | John Ahlgren |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "background": { "service_worker": "background.js" }, "description": "Rewrite URLs using custom rules.", "host_permissions": [ "*:\/\/*\/*" ], "icons": { "128": "icons8-Edit-128.png", "16": "icons8-Edit-16.png", "48": "icons8-Edit-48.png" }, "manifest_version": 3, "name": "URL Rewriter", "omnibox": { "keyword": "j" }, "options_page": "options.html", "permissions": [ "storage", "activeTab" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.1" } |