URL Localizer

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

URL Localizer क्या है?

URL Localizer Zeshi Zheng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows the user to change the domain or url parameters easily before loading page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में URL Localizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}