UNPKG

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

77 lines 1.68 kB
{ "manifest_version": 3, "name": "Ember Inspector", "description": "Tool for debugging Ember applications.", "version": "4.11.0", "icons": { "16": "panes-3-16-0/assets/images/icon16.png", "38": "panes-3-16-0/assets/images/icon38.png", "48": "panes-3-16-0/assets/images/icon48.png", "128": "panes-3-16-0/assets/images/icon128.png" }, "permissions": [ "storage", "scripting" ], "host_permissions": [ "<all_urls>" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "boot.js" ], "world": "MAIN", "run_at": "document_start", "match_about_blank": true, "all_frames": true }, { "matches": [ "<all_urls>" ], "js": [ "content-script.js" ], "run_at": "document_end", "match_about_blank": true, "all_frames": true } ], "devtools_page": "devtools.html", "action": { "default_icon": { "19": "panes-3-16-0/assets/images/icon19_grey.png", "38": "panes-3-16-0/assets/images/icon38_grey.png" }, "default_title": "This webpage is not running Ember.js" }, "background": { "service_worker": "background.js" }, "browser_specific_settings": { "gecko": { "id": "ember-inspector@emberjs.com" } }, "options_ui": { "page": "options-dialog.html" }, "web_accessible_resources": [ { "resources": [ "scripts/in-page-script.js", "panes-*/ember_debug.js" ], "matches": [ "*://*/*" ] } ] }