URL Localizer
This extension allows the user to change the domain or url parameters easily before loading page.
Wat is URL Localizer?
URL Localizer is een Chrome-extensie ontwikkeld door Zeshi Zheng, en de belangrijkste functie is "This extension allows the user to change the domain or url parameters easily before loading page.".
Extensie Screenshots
Download het CRX-bestand van de extensie URL Localizer
Download URL Localizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | URL Localizer |
ID | caedmimeiecplmfpiaoboinalimdniea |
Officiële URL | https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea |
Beschrijving | This extension allows the user to change the domain or url parameters easily before loading page. |
Bestandsgrootte | 100 KB |
Aantal Installaties | 17 |
Huidige Versie | 1.1.0 |
Laatst Bijgewerkt | 2017-12-22 |
Publicatiedatum | 2017-12-21 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Zeshi Zheng |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |