Chrome Extension Webpack

A boilerplate to chrome extension with webpack

Qu'est-ce que Chrome Extension Webpack ?

Chrome Extension Webpack est une extension Chrome développée par ihoney009, et sa fonction principale est "A boilerplate to chrome extension with webpack".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Chrome Extension Webpack

Téléchargez les fichiers d'extension Chrome Extension Webpack au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        网页遮罩,能够快速打开设置一个网页遮罩                    

Informations de Base sur l'Extension

Nom Chrome Extension Webpack Chrome Extension Webpack
ID lmdnkbghnelodjoicajfcaklgifldhoh
URL Officiel https://chrome.google.com/webstore/detail/chrome-extension-webpack/lmdnkbghnelodjoicajfcaklgifldhoh
Description A boilerplate to chrome extension with webpack
Taille du Fichier 238 KB
Nombre d'Installations 99
Version Actuelle 0.0.1
Dernière Mise à Jour 2019-05-04
Date de Publication 2019-04-30
Développeur ihoney009
Type de Paiement free
Langues Prises en Charge 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'"
}