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.                    

擴展基本資訊

名稱 Environment Notification Banner Environment Notification Banner
ID acekbdliodimhedjoaifioeppmfiokon
官方網址 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:\/\/*\/"
    ]
}