Localhost detector

Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.

Localhost detectorとは何ですか?

Localhost detectorはmilan.chhedaによって開発されたChromeの拡張機能で、その主な機能は「Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.」です。

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

screenshot

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

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

拡張機能の使用方法

                        It checks the following in the URL and adds the red banner:
1. "localhost"
2. "127.0.0.1"
3. "local."
4. ".local"
5. "staging."
6. ".stg"
7. "dev."
8. "test."
9. ".test"


Let me know, if you want to add any other string that should match and show the red banner.                    

拡張機能の基本情報

名前 Localhost detector Localhost detector
ID nkjfadmbkfhmkkkbgghelmjbdaenbngh
公式URL https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh
説明 Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
ファイルサイズ 37.79 KB
インストール数 302
現在のバージョン 0.3
最終更新日 2019-04-25
公開日 2019-04-25
評価 4.00/5 合計 5 レビュー
開発者 milan.chheda
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Localhost detector",
    "description": "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.",
    "version": "0.3",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "local.js"
            ],
            "css": [
                "local.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}