Chrome Explorer
A boilerplate to chrome extension with webpack
What is Chrome Explorer?
Chrome Explorer is a Chrome extension developed by mdcanham, and its main feature is "A boilerplate to chrome extension with webpack".
Download Chrome Explorer Extension CRX File
Download Chrome Explorer 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
A file explorer in Chrome.
Extension Basic Information
Name | ![]() |
ID | obhbbbkkgepfadlggiffekmhlcpeppdd |
Official URL | https://chrome.google.com/webstore/detail/chrome-explorer/obhbbbkkgepfadlggiffekmhlcpeppdd |
Description | A boilerplate to chrome extension with webpack |
File Size | 574 KB |
Installation Count | 30 |
Current Version | 0.0.1 |
Last Updated | 2017-05-24 |
Publish Date | 2017-05-24 |
Developer | mdcanham |
Payment Type | free |
Supported Languages | 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" } |