URL Localizer

This extension allows the user to change the domain or url parameters easily before loading page.

什么是URL Localizer?

URL Localizer是由Zeshi Zheng开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the user to change the domain or url parameters easily before loading page.”。

扩展截图

screenshot

下载URL Localizer扩展crx文件

下载URL Localizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 URL Localizer URL Localizer
ID caedmimeiecplmfpiaoboinalimdniea
官方URL https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea
简介 This extension allows the user to change the domain or url parameters easily before loading page.
文件大小 100 KB
安装次数 17
当前版本 1.1.0
更新时间 2017-12-22
上架时间 2017-12-21
评分 5.00/5 共5次评分
开发者 Zeshi Zheng
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
            ]
        }
    ]
}