URL Localizer

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

URL Localizer là gì?

URL Localizer là một tiện ích mở rộng Chrome được phát triển bởi Zeshi Zheng, và tính năng chính của nó là "This extension allows the user to change the domain or url parameters easily before loading page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng URL Localizer

Tải xuống các tệp mở rộng URL Localizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên URL Localizer URL Localizer
ID caedmimeiecplmfpiaoboinalimdniea
URL Chính Thức https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea
Mô tả This extension allows the user to change the domain or url parameters easily before loading page.
Kích Thước Tệp 100 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2017-12-22
Ngày Phát Hành 2017-12-21
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Zeshi Zheng
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}