URL Localizer
This extension allows the user to change the domain or url parameters easily before loading page.
O que é URL Localizer?
URL Localizer é uma extensão do Chrome desenvolvida por Zeshi Zheng, e sua principal característica é "This extension allows the user to change the domain or url parameters easily before loading page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão URL Localizer
Baixe arquivos de extensão URL Localizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 Informações Básicas da Extensão
| Nome | |
| ID | caedmimeiecplmfpiaoboinalimdniea |
| URL Oficial | https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea |
| Descrição | This extension allows the user to change the domain or url parameters easily before loading page. |
| Tamanho do Arquivo | 100 KB |
| Contagem de Instalações | 17 |
| Versão Atual | 1.1.0 |
| Última Atualização | 2017-12-22 |
| Data de Publicação | 2017-12-21 |
| Classificação | 5.00/5 Total de 5 Avaliações |
| Desenvolvedor | Zeshi Zheng |
| [email protected] | |
| Tipo de Pagamento | free |
| Idiomas Suportados | 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"
]
}
]
} | |