URL Localizer

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

Vad är URL Localizer?

URL Localizer är en Chrome-tillägg utvecklad av Zeshi Zheng, och dess huvudfunktion är "This extension allows the user to change the domain or url parameters easily before loading page.".

Tilläggsskärmbilder

screenshot

Ladda ner URL Localizer-förlängningens CRX-fil

Ladda ner URL Localizer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn URL Localizer URL Localizer
ID caedmimeiecplmfpiaoboinalimdniea
Officiell webbadress https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea
Beskrivning This extension allows the user to change the domain or url parameters easily before loading page.
Filstorlek 100 KB
Antal Installationer 17
Aktuell Version 1.1.0
Senast Uppdaterad 2017-12-22
Publiceringsdatum 2017-12-21
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare Zeshi Zheng
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}