URL Changer

URL CHANGER

Cos'è URL Changer?

URL Changer è un'estensione di Chrome sviluppata da soxZ, e la sua funzione principale è "URL CHANGER".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione URL Changer

Scarica i file di estensione URL Changer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Outdated, you can try URL Changer V2 :
it can save more data/more options
https://chrome.google.com/webstore/detail/url-changer-v2/bdliogodcalgdbfmhlffdebpdinjefpi


Allows you to change the domain name of your current URL
Exemple :
google.com/will
-> thisisanexemple.com/will

You can configure theses domains in a JSON files


[
   {
      "currentUrl" : "https://www.google.com/",
      "destinationUrl" : "https://www.thisisanexemple.com/"
   }
]

both are very case sensitive, make sure its the exact url, that there is no missing characters, mostly on start "http://"                    

Informazioni di Base sull'Estensione

Nome URL Changer URL Changer
ID bhjhhbeipdlljpdijfmdjplidlegpenl
URL Ufficiale https://chromewebstore.google.com/detail/url-changer/bhjhhbeipdlljpdijfmdjplidlegpenl
Descrizione URL CHANGER
Dimensione del File 98.43 KB
Conteggio Installazioni 394
Versione Corrente 0.7
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore soxZ
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Changer",
    "description": "URL CHANGER",
    "version": "0.7",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.12.0.min.js",
                "addToStorage.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    }
}