URL Changer

URL CHANGER

ما هو URL Changer؟

URL Changer هو إضافة Chrome تم تطويرها بواسطة soxZ، والميزة الرئيسية لها هي "URL CHANGER".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة URL Changer

قم بتنزيل ملفات الامتداد URL Changer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم URL Changer URL Changer
ID bhjhhbeipdlljpdijfmdjplidlegpenl
عنوان URL الرسمي https://chromewebstore.google.com/detail/url-changer/bhjhhbeipdlljpdijfmdjplidlegpenl
الوصف URL CHANGER
حجم الملف 98.43 KB
عدد التثبيتات 394
النسخة الحالية 0.7
آخر تحديث 2019-03-08
تاريخ النشر 2019-03-08
تقييم 4.00/5 مجموع تقييمات 4
المطور soxZ
نوع الدفع free
اللغات المدعومة 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"
    }
}