URL Localizer
This extension allows the user to change the domain or url parameters easily before loading page.
¿Qué es URL Localizer?
URL Localizer es una extensión de Chrome desarrollada por Zeshi Zheng, y su función principal es "This extension allows the user to change the domain or url parameters easily before loading page.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión URL Localizer
Descarga archivos de extensión URL Localizer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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 Información Básica de la Extensión
| Nombre | |
| ID | caedmimeiecplmfpiaoboinalimdniea |
| URL Oficial | https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea |
| Descripción | This extension allows the user to change the domain or url parameters easily before loading page. |
| Tamaño del Archivo | 100 KB |
| Cantidad de Instalaciones | 17 |
| Versión Actual | 1.1.0 |
| Última Actualización | 2017-12-22 |
| Fecha de Publicación | 2017-12-21 |
| Calificación | 5.00/5 Total de 5 Calificaciones |
| Desarrollador | Zeshi Zheng |
| Correo electrónico | [email protected] |
| Tipo de Pago | free |
| Idiomas Soportados | 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"
]
}
]
} | |