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)
拡張機能の基本情報
名前 | 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 |
Eメール | [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" } } |