Environment Notification Banner

This extension shows a warning banner on the page when visiting a specified set of URLS

O que é Environment Notification Banner?

Environment Notification Banner é uma extensão do Chrome desenvolvida por Chris Hepner, e sua principal característica é "This extension shows a warning banner on the page when visiting a specified set of URLS".

Baixar o arquivo CRX da Extensão Environment Notification Banner

Baixe arquivos de extensão Environment Notification Banner no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Environment Notification Banner Environment Notification Banner
ID acekbdliodimhedjoaifioeppmfiokon
URL Oficial https://chromewebstore.google.com/detail/environment-notification/acekbdliodimhedjoaifioeppmfiokon
Descrição This extension shows a warning banner on the page when visiting a specified set of URLS
Tamanho do Arquivo 30.08 KB
Contagem de Instalações 151
Versão Atual 1.0.6
Última Atualização 2017-04-07
Data de Publicação 2017-04-06
Desenvolvedor Chris Hepner
Tipo de Pagamento free
Site da Extensão https://github.com/chrishepner/env-extension
URL da Página de Ajuda https://github.com/chrishepner/env-extension
Idiomas Suportados 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:\/\/*\/"
    ]
}