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
Eメール [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"
            ]
        }
    ]
}