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
电子邮箱 [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"
        }
    ]
}