electron-devtools-vendor
Version:
<div align="center"> <h2>electron-devtools-vendor</h2> <img alt="MIT" src="https://img.shields.io/github/license/BlackHole1/electron-devtools-vendor?color=9cf&style=flat-square"> <img alt="GitHub repo size" src="https://img.shields.io/github/r
43 lines • 840 B
JSON
{
"manifest_version": 2,
"name": "MobX Developer Tools",
"description": "Dev-tools for MobX and React",
"icons": {
"16": "icons/Icon-16.png",
"48": "icons/Icon-48.png",
"128": "icons/Icon-128.png"
},
"devtools_page": "panel-loader.html",
"content_security_policy": "script-src 'self'; object-src 'self'",
"web_accessible_resources": [
"main.html",
"panel.html",
"backend.js"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"storage",
"scripting"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"injectGlobalHook.js"
],
"run_at": "document_start"
}
],
"version": "0.9.26",
"version_name": "0.9.26",
"host_permissions": [
"<all_urls>"
]
}