URL Localizer
This extension allows the user to change the domain or url parameters easily before loading page.
Cos'è URL Localizer?
URL Localizer è un'estensione di Chrome sviluppata da Zeshi Zheng, e la sua funzione principale è "This extension allows the user to change the domain or url parameters easily before loading page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione URL Localizer
Scarica i file di estensione URL Localizer 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
This is a Free Chrome Extension that helps engineers to capture and modify url.
features:
Control if you want to Pause Website Loading before you changing parameters
Capture protocol//hostname:port/filepath?queries
Edit parameters/domain to whatever you want
Add new parameters
Delete a parameter
Case-ignored Search
Copy all parameters easily Informazioni di Base sull'Estensione
| Nome | |
| ID | caedmimeiecplmfpiaoboinalimdniea |
| URL Ufficiale | https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea |
| Descrizione | This extension allows the user to change the domain or url parameters easily before loading page. |
| Dimensione del File | 100 KB |
| Conteggio Installazioni | 17 |
| Versione Corrente | 1.1.0 |
| Ultimo Aggiornamento | 2017-12-22 |
| Data di Pubblicazione | 2017-12-21 |
| Valutazione | 5.00/5 Totale 5 Valutazioni |
| Sviluppatore | Zeshi Zheng |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "URL Localizer",
"description": "This extension allows the user to change the domain or url parameters easily before loading page.",
"version": "1.1.0",
"icons": [],
"browser_action": {
"default_icon": "imgs\/icon.png",
"default_popup": "dist\/index.html",
"default_title": "Start Capturing"
},
"author": "Zeshi (Steve) Zheng",
"permissions": [
"http:\/\/*\/",
"http:\/\/*\/*",
"https:\/\/*\/",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"background1020.js"
]
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"http:\/\/*\/",
"http:\/\/*\/*",
"https:\/\/*\/",
"https:\/\/*\/*"
],
"js": [
"url-handler1020.js"
]
}
]
} | |