Environment Notification Banner
This extension shows a warning banner on the page when visiting a specified set of URLS
Apa itu Environment Notification Banner?
Environment Notification Banner adalah ekstensi Chrome yang dikembangkan oleh Chris Hepner, dan fitur utamanya adalah "This extension shows a warning banner on the page when visiting a specified set of URLS".
Unduh Berkas CRX Ekstensi Environment Notification Banner
Unduh file ekstensi Environment Notification Banner dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Environment Notification Banner |
ID | acekbdliodimhedjoaifioeppmfiokon |
URL Resmi | https://chromewebstore.google.com/detail/environment-notification/acekbdliodimhedjoaifioeppmfiokon |
Deskripsi | This extension shows a warning banner on the page when visiting a specified set of URLS |
Ukuran File | 30.08 KB |
Jumlah Instalasi | 151 |
Versi Saat Ini | 1.0.6 |
Terakhir Diperbarui | 2017-04-07 |
Tanggal Publikasi | 2017-04-06 |
Pengembang | Chris Hepner |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/chrishepner/env-extension |
URL Halaman Bantuan | https://github.com/chrishepner/env-extension |
Bahasa yang Didukung | 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:\/\/*\/" ] } |