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
官方網址 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"
            ]
        }
    ]
}