URL Localizer
This extension allows the user to change the domain or url parameters easily before loading page.
What is URL Localizer?
URL Localizer is a Chrome extension developed by Zeshi Zheng, and its main feature is "This extension allows the user to change the domain or url parameters easily before loading page.".
Extension Screenshots
Download URL Localizer Extension CRX File
Download URL Localizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | URL Localizer |
ID | caedmimeiecplmfpiaoboinalimdniea |
Official URL | https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea |
Description | This extension allows the user to change the domain or url parameters easily before loading page. |
File Size | 100 KB |
Installation Count | 17 |
Current Version | 1.1.0 |
Last Updated | 2017-12-22 |
Publish Date | 2017-12-21 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Zeshi Zheng |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |