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
官方網址 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
電子郵箱 [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"
        }
    ]
}