URL Changer

URL CHANGER

URL Changer là gì?

URL Changer là một tiện ích mở rộng Chrome được phát triển bởi soxZ, và tính năng chính của nó là "URL CHANGER".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng URL Changer

Tải xuống các tệp mở rộng URL Changer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên URL Changer URL Changer
ID bhjhhbeipdlljpdijfmdjplidlegpenl
URL Chính Thức https://chromewebstore.google.com/detail/url-changer/bhjhhbeipdlljpdijfmdjplidlegpenl
Mô tả URL CHANGER
Kích Thước Tệp 98.43 KB
Số Lần Cài Đặt 394
Phiên Bản Hiện Tại 0.7
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển soxZ
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}