URL Rewriter
Rewrite URLs using custom rules.
Cos'è URL Rewriter?
URL Rewriter è un'estensione di Chrome sviluppata da John Ahlgren, e la sua funzione principale è "Rewrite URLs using custom rules.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione URL Rewriter
Scarica i file di estensione URL Rewriter 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
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.
Informazioni di Base sull'Estensione
Nome | URL Rewriter |
ID | khncccgpokiedblbaahpfchghohlahje |
URL Ufficiale | https://chromewebstore.google.com/detail/url-rewriter/khncccgpokiedblbaahpfchghohlahje |
Descrizione | Rewrite URLs using custom rules. |
Dimensione del File | 11.3 KB |
Conteggio Installazioni | 79 |
Versione Corrente | 2.1 |
Ultimo Aggiornamento | 2022-12-30 |
Data di Pubblicazione | 2022-04-19 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | John Ahlgren |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } |