Chrome Extension Webpack
A boilerplate to chrome extension with webpack
What is Chrome Extension Webpack?
Chrome Extension Webpack is a Chrome extension developed by ihoney009, and its main feature is "A boilerplate to chrome extension with webpack".
Extension Screenshots
Download Chrome Extension Webpack Extension CRX File
Download Chrome Extension Webpack extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
网页遮罩,能够快速打开设置一个网页遮罩
Extension Basic Information
Name | ![]() |
ID | lmdnkbghnelodjoicajfcaklgifldhoh |
Official URL | https://chrome.google.com/webstore/detail/chrome-extension-webpack/lmdnkbghnelodjoicajfcaklgifldhoh |
Description | A boilerplate to chrome extension with webpack |
File Size | 238 KB |
Installation Count | 99 |
Current Version | 0.0.1 |
Last Updated | 2019-05-04 |
Publish Date | 2019-04-30 |
Developer | ihoney009 |
Payment Type | free |
Supported Languages | 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'" } |