Localhost detector

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

Apa itu Localhost detector?

Localhost detector adalah ekstensi Chrome yang dikembangkan oleh milan.chheda, dan fitur utamanya adalah "Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Localhost detector

Unduh file ekstensi Localhost detector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Localhost detector Localhost detector
ID nkjfadmbkfhmkkkbgghelmjbdaenbngh
URL Resmi https://chromewebstore.google.com/detail/localhost-detector/nkjfadmbkfhmkkkbgghelmjbdaenbngh
Deskripsi Detects if you are accessing localhost or production and respectively shows prominent red banner only on localhost.
Ukuran File 37.79 KB
Jumlah Instalasi 302
Versi Saat Ini 0.3
Terakhir Diperbarui 2019-04-25
Tanggal Publikasi 2019-04-25
Penilaian 4.00/5 Total 5 Penilaian
Pengembang milan.chheda
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}