Chrome Extension Webpack
A boilerplate to chrome extension with webpack
Apa itu Chrome Extension Webpack?
Chrome Extension Webpack adalah ekstensi Chrome yang dikembangkan oleh ihoney009, dan fitur utamanya adalah "A boilerplate to chrome extension with webpack".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Chrome Extension Webpack
Unduh file ekstensi Chrome Extension Webpack 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
网页遮罩,能够快速打开设置一个网页遮罩
Informasi Dasar Ekstensi
Nama | ![]() |
ID | lmdnkbghnelodjoicajfcaklgifldhoh |
URL Resmi | https://chrome.google.com/webstore/detail/chrome-extension-webpack/lmdnkbghnelodjoicajfcaklgifldhoh |
Deskripsi | A boilerplate to chrome extension with webpack |
Ukuran File | 238 KB |
Jumlah Instalasi | 99 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2019-05-04 |
Tanggal Publikasi | 2019-04-30 |
Pengembang | ihoney009 |
Tipe Pembayaran | free |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A boilerplate to chrome extension with webpack", "version": "0.0.1", "name": "Chrome Extension Webpack", "options_page": "options.html", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "mask.bundle.js" ] } ], "commands": { "showMask": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" }, "description": "show mask" } }, "permissions": [ "contextMenus", "storage", "tabs" ], "browser_action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |