Chrome Explorer

A boilerplate to chrome extension with webpack

什么是Chrome Explorer?

Chrome Explorer是由mdcanham开发的Chrome扩展程序,该扩展的主要功能是“A boilerplate to chrome extension with webpack”。

下载Chrome Explorer扩展crx文件

下载Chrome Explorer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A file explorer in Chrome.                    

扩展基本信息

名称 Chrome Explorer Chrome Explorer
ID obhbbbkkgepfadlggiffekmhlcpeppdd
官方URL https://chrome.google.com/webstore/detail/chrome-explorer/obhbbbkkgepfadlggiffekmhlcpeppdd
简介 A boilerplate to chrome extension with webpack
文件大小 574 KB
安装次数 30
当前版本 0.0.1
更新时间 2017-05-24
上架时间 2017-05-24
开发者 mdcanham
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Explorer",
    "short_name": "Chrome Explorer",
    "options_page": "options.html",
    "version": "0.0.1",
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "browser_action": [],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "file:\/\/*\/*"
    ],
    "description": "A boilerplate to chrome extension with webpack"
}