URL Localizer

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

URL Localizerคืออะไร?

URL Localizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zeshi Zheng และคุณลักษณะหลักของมันคือ "This extension allows the user to change the domain or url parameters easily before loading page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย URL Localizer

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}