URL Changer

URL CHANGER

URL Changerとは何ですか?

URL ChangerはsoxZによって開発されたChromeの拡張機能で、その主な機能は「URL CHANGER」です。

拡張機能のスクリーンショット

screenshot

URL Changer拡張機能のCRXファイルをダウンロード

URL Changer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    }
}