Environment Notification Banner
This extension shows a warning banner on the page when visiting a specified set of URLS
什么是Environment Notification Banner?
Environment Notification Banner是由Chris Hepner开发的Chrome扩展程序,该扩展的主要功能是“This extension shows a warning banner on the page when visiting a specified set of URLS”。
下载Environment Notification Banner扩展crx文件
下载Environment Notification Banner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | acekbdliodimhedjoaifioeppmfiokon |
| 官方URL | https://chromewebstore.google.com/detail/environment-notification/acekbdliodimhedjoaifioeppmfiokon |
| 简介 | This extension shows a warning banner on the page when visiting a specified set of URLS |
| 文件大小 | 30.08 KB |
| 安装次数 | 151 |
| 当前版本 | 1.0.6 |
| 更新时间 | 2017-04-07 |
| 上架时间 | 2017-04-06 |
| 开发者 | Chris Hepner |
| 付费类型 | free |
| 扩展官网 | https://github.com/chrishepner/env-extension |
| 帮助页面URL | https://github.com/chrishepner/env-extension |
| 支持的语言 | 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:\/\/*\/"
]
} | |