URL Localizer

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

Co je URL Localizer?

URL Localizer je rozšíření Chrome vyvinuté Zeshi Zheng, a jeho hlavní funkcí je „This extension allows the user to change the domain or url parameters easily before loading page.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření URL Localizer

Stáhněte si soubory rozšíření URL Localizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název URL Localizer URL Localizer
ID caedmimeiecplmfpiaoboinalimdniea
Oficiální URL https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea
Popis This extension allows the user to change the domain or url parameters easily before loading page.
Velikost souboru 100 KB
Počet instalací 17
Aktuální Verze 1.1.0
Poslední Aktualizace 2017-12-22
Datum Vydání 2017-12-21
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář Zeshi Zheng
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}