Danger Banner

An extension to show banner on specific path.

ما هو Danger Banner؟

Danger Banner هو إضافة Chrome تم تطويرها بواسطة Ying Zhou، والميزة الرئيسية لها هي "An extension to show banner on specific path.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Danger Banner

قم بتنزيل ملفات الامتداد Danger Banner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Showing red banner on specific pages for developers to avoid operating on the wrong environments.
(Also supports regex for advanced matching)                    

معلومات أساسية عن التمديد

الاسم Danger Banner Danger Banner
ID cngbiplhanlcahieakghjdjakopoijeo
عنوان URL الرسمي https://chromewebstore.google.com/detail/danger-banner/cngbiplhanlcahieakghjdjakopoijeo
الوصف An extension to show banner on specific path.
حجم الملف 145 KB
عدد التثبيتات 49
النسخة الحالية 4.3
آخر تحديث 2022-11-23
تاريخ النشر 2021-03-20
تقييم 5.00/5 مجموع تقييمات 2
المطور Ying Zhou
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/AliNL/DangerBanner
عنوان صفحة المساعدة https://github.com/AliNL/DangerBanner/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Danger Banner",
    "version": "4.3",
    "description": "An extension to show banner on specific path.",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "js": [
                "banner.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}