Danger Banner
An extension to show banner on specific path.
什么是Danger Banner?
Danger Banner是由Ying Zhou开发的Chrome扩展程序,该扩展的主要功能是“An extension to show banner on specific path.”。
扩展截图
下载Danger Banner扩展crx文件
下载Danger Banner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        Showing red banner on specific pages for developers to avoid operating on the wrong environments.
(Also supports regex for advanced matching)                     扩展基本信息
| 名称 |   |  
| 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 | 
| 帮助页面URL | 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"
    }
}  |  |