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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        }
    ]
}