URL Changer

URL CHANGER

Co to jest URL Changer?

URL Changer to rozszerzenie Chrome opracowane przez soxZ, a jego główną funkcją jest „URL CHANGER”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia URL Changer

Pobierz pliki rozszerzeń URL Changer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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://"                    

Podstawowe informacje o rozszerzeniu

Nazwa URL Changer URL Changer
ID bhjhhbeipdlljpdijfmdjplidlegpenl
Oficjalny URL https://chromewebstore.google.com/detail/url-changer/bhjhhbeipdlljpdijfmdjplidlegpenl
Opis URL CHANGER
Rozmiar pliku 98.43 KB
Liczba instalacji 394
Aktualna Wersja 0.7
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper soxZ
Typ Płatności free
Obsługiwane Języki 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"
    }
}