URL Append param
Append param to current url
Cos'è URL Append param?
URL Append param è un'estensione di Chrome sviluppata da zzuwzj, e la sua funzione principale è "Append param to current url".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione URL Append param
Scarica i file di estensione URL Append param 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
Append specified url param to current page url and open a new tab with the new url, for example, append "forceVersion=0.0.0" to current url and open a new tab with the new url param. Informazioni di Base sull'Estensione
| Nome | |
| ID | ljiadknbolhlcpaphkjndlkompeemogd |
| URL Ufficiale | https://chrome.google.com/webstore/detail/url-append-param/ljiadknbolhlcpaphkjndlkompeemogd |
| Descrizione | Append param to current url |
| Dimensione del File | 106 KB |
| Conteggio Installazioni | 25 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2021-02-08 |
| Data di Pubblicazione | 2021-02-08 |
| Valutazione | 1.50/5 Totale 2 Valutazioni |
| Sviluppatore | zzuwzj |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://zzuwzj.github.io/chrome-ext-url-add-param/ |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "URL Append param",
"description": "Append param to current url",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"contextMenus",
"tabs"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "\/images\/url_16.png",
"32": "\/images\/url_32.png",
"48": "\/images\/url_48.png",
"128": "\/images\/url_128.png"
}
},
"options_page": "options.html",
"icons": {
"16": "\/images\/url_16.png",
"32": "\/images\/url_32.png",
"48": "\/images\/url_48.png",
"128": "\/images\/url_128.png"
}
} | |