Danger Banner

An extension to show banner on specific path.

What is Danger Banner?

Danger Banner is a Chrome extension developed by Ying Zhou, and its main feature is "An extension to show banner on specific path.".

Extension Screenshots

screenshot

Download Danger Banner Extension CRX File

Download Danger Banner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Danger Banner Danger Banner
ID cngbiplhanlcahieakghjdjakopoijeo
Official URL https://chromewebstore.google.com/detail/danger-banner/cngbiplhanlcahieakghjdjakopoijeo
Description An extension to show banner on specific path.
File Size 145 KB
Installation Count 49
Current Version 4.3
Last Updated 2022-11-23
Publish Date 2021-03-20
Rating 5.00/5 Total 2 Ratings
Developer Ying Zhou
Email [email protected]
Payment Type free
Extension Website https://github.com/AliNL/DangerBanner
Help Page URL https://github.com/AliNL/DangerBanner/issues
Supported Languages 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"
    }
}