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 - это расширение Chrome, разработанное Chris Hepner, и его основная функция - "This extension shows a warning banner on the page when visiting a specified set of URLS".
Скачать файл CRX расширения Environment Notification Banner
Скачайте файлы расширений 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.
Основная информация о расширении
Название | Environment Notification Banner |
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:\/\/*\/" ] } |