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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}