Localhost detector

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

Localhost detector là gì?

Localhost detector là một tiện ích mở rộng Chrome được phát triển bởi milan.chheda, và tính năng chính của nó là "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".

Ả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 Localhost detector

Tải xuống các tệp mở rộng Localhost detector 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

                        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.                    

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

Tên Localhost detector Localhost detector
ID nkjfadmbkfhmkkkbgghelmjbdaenbngh
URL Chính Thức https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh
Mô tả Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Kích Thước Tệp 37.79 KB
Số Lần Cài Đặt 302
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2019-04-25
Ngày Phát Hành 2019-04-25
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển milan.chheda
Email [email protected]
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": "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"
        }
    ]
}