Environment Notification Banner

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

Co to jest Environment Notification Banner?

Environment Notification Banner to rozszerzenie Chrome opracowane przez Chris Hepner, a jego główną funkcją jest „This extension shows a warning banner on the page when visiting a specified set of URLS”.

Pobierz plik CRX rozszerzenia Environment Notification Banner

Pobierz pliki rozszerzeń Environment Notification Banner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Environment Notification Banner Environment Notification Banner
ID acekbdliodimhedjoaifioeppmfiokon
Oficjalny URL https://chromewebstore.google.com/detail/environment-notification/acekbdliodimhedjoaifioeppmfiokon
Opis This extension shows a warning banner on the page when visiting a specified set of URLS
Rozmiar pliku 30.08 KB
Liczba instalacji 151
Aktualna Wersja 1.0.6
Ostatnia Aktualizacja 2017-04-07
Data Publikacji 2017-04-06
Deweloper Chris Hepner
Typ Płatności free
Strona Rozszerzenia https://github.com/chrishepner/env-extension
Adres URL Strony Pomocy https://github.com/chrishepner/env-extension
Obsługiwane Języki 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:\/\/*\/"
    ]
}