Environment Notification Banner
This extension shows a warning banner on the page when visiting a specified set of URLS
What is Environment Notification Banner?
Environment Notification Banner is a Chrome extension developed by Chris Hepner, and its main feature is "This extension shows a warning banner on the page when visiting a specified set of URLS".
Download Environment Notification Banner Extension CRX File
Download Environment Notification 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
Thanks to Edward Wang for improved CSS resets and preventing duplicated banners, and Michael Lefkowitz for adding the ability to move the banner to the bottom.
Extension Basic Information
Name | Environment Notification Banner |
ID | acekbdliodimhedjoaifioeppmfiokon |
Official URL | https://chromewebstore.google.com/detail/environment-notification/acekbdliodimhedjoaifioeppmfiokon |
Description | This extension shows a warning banner on the page when visiting a specified set of URLS |
File Size | 30.08 KB |
Installation Count | 151 |
Current Version | 1.0.6 |
Last Updated | 2017-04-07 |
Publish Date | 2017-04-06 |
Developer | Chris Hepner |
Payment Type | free |
Extension Website | https://github.com/chrishepner/env-extension |
Help Page URL | https://github.com/chrishepner/env-extension |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Environment Notification Banner", "description": "This extension shows a warning banner on the page when visiting a specified set of URLS", "version": "1.0.6", "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "inject.js" ], "icons": { "48": "icons\/alert-48.png", "128": "icons\/alert-128.png" }, "options_page": "options.html", "permissions": [ "tabs", "storage", "http:\/\/*\/", "https:\/\/*\/" ] } |