URL Changer

URL CHANGER

Apa itu URL Changer?

URL Changer adalah ekstensi Chrome yang dikembangkan oleh soxZ, dan fitur utamanya adalah "URL CHANGER".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi URL Changer

Unduh file ekstensi URL Changer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama URL Changer URL Changer
ID bhjhhbeipdlljpdijfmdjplidlegpenl
URL Resmi https://chromewebstore.google.com/detail/url-changer/bhjhhbeipdlljpdijfmdjplidlegpenl
Deskripsi URL CHANGER
Ukuran File 98.43 KB
Jumlah Instalasi 394
Versi Saat Ini 0.7
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Penilaian 4.00/5 Total 4 Penilaian
Pengembang soxZ
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}