Localhost detector

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

Localhost detectorคืออะไร?

Localhost detector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย milan.chheda และคุณลักษณะหลักของมันคือ "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Localhost detector

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}