Environment Notification Banner

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

Vad är Environment Notification Banner?

Environment Notification Banner är en Chrome-tillägg utvecklad av Chris Hepner, och dess huvudfunktion är "This extension shows a warning banner on the page when visiting a specified set of URLS".

Ladda ner Environment Notification Banner-förlängningens CRX-fil

Ladda ner Environment Notification Banner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Environment Notification Banner Environment Notification Banner
ID acekbdliodimhedjoaifioeppmfiokon
Officiell webbadress https://chromewebstore.google.com/detail/environment-notification/acekbdliodimhedjoaifioeppmfiokon
Beskrivning This extension shows a warning banner on the page when visiting a specified set of URLS
Filstorlek 30.08 KB
Antal Installationer 151
Aktuell Version 1.0.6
Senast Uppdaterad 2017-04-07
Publiceringsdatum 2017-04-06
Utvecklare Chris Hepner
Betalningssätt free
Tilläggswebbplats https://github.com/chrishepner/env-extension
Hjälpsida URL https://github.com/chrishepner/env-extension
Stödda Språk 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:\/\/*\/"
    ]
}