Chrome Extension Webpack
A boilerplate to chrome extension with webpack
Wat is Chrome Extension Webpack?
Chrome Extension Webpack is een Chrome-extensie ontwikkeld door ihoney009, en de belangrijkste functie is "A boilerplate to chrome extension with webpack".
Extensie Screenshots
Download het CRX-bestand van de extensie Chrome Extension Webpack
Download Chrome Extension Webpack-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
网页遮罩,能够快速打开设置一个网页遮罩
Basisinformatie over de Extensie
Naam | ![]() |
ID | lmdnkbghnelodjoicajfcaklgifldhoh |
Officiële URL | https://chrome.google.com/webstore/detail/chrome-extension-webpack/lmdnkbghnelodjoicajfcaklgifldhoh |
Beschrijving | A boilerplate to chrome extension with webpack |
Bestandsgrootte | 238 KB |
Aantal Installaties | 99 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2019-05-04 |
Publicatiedatum | 2019-04-30 |
Ontwikkelaar | ihoney009 |
Betalingswijze | free |
Ondersteunde Talen | 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'" } |