URL Localizer

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

Qu'est-ce que URL Localizer ?

URL Localizer est une extension Chrome développée par Zeshi Zheng, et sa fonction principale est "This extension allows the user to change the domain or url parameters easily before loading page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension URL Localizer

Téléchargez les fichiers d'extension URL Localizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom URL Localizer URL Localizer
ID caedmimeiecplmfpiaoboinalimdniea
URL Officiel https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea
Description This extension allows the user to change the domain or url parameters easily before loading page.
Taille du Fichier 100 KB
Nombre d'Installations 17
Version Actuelle 1.1.0
Dernière Mise à Jour 2017-12-22
Date de Publication 2017-12-21
Évaluation 5.00/5 Total 5 Évaluations
Développeur Zeshi Zheng
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}