URL Localizer
This extension allows the user to change the domain or url parameters easily before loading page.
Co to jest URL Localizer?
URL Localizer to rozszerzenie Chrome opracowane przez Zeshi Zheng, a jego główną funkcją jest „This extension allows the user to change the domain or url parameters easily before loading page.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia URL Localizer
Pobierz pliki rozszerzeń URL Localizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | caedmimeiecplmfpiaoboinalimdniea |
| Oficjalny URL | https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea |
| Opis | This extension allows the user to change the domain or url parameters easily before loading page. |
| Rozmiar pliku | 100 KB |
| Liczba instalacji | 17 |
| Aktualna Wersja | 1.1.0 |
| Ostatnia Aktualizacja | 2017-12-22 |
| Data Publikacji | 2017-12-21 |
| Ocena | 5.00/5 Łącznie 5 Oceny |
| Deweloper | Zeshi Zheng |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
}
]
} | |