mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
c133d59461
* Version Packages * Update --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
63 lines
1.6 KiB
JSON
63 lines
1.6 KiB
JSON
{
|
|
"version": "3.2.3",
|
|
"name": "Redux DevTools",
|
|
"description": "Redux DevTools for debugging application's state changes.",
|
|
"homepage_url": "https://github.com/reduxjs/redux-devtools",
|
|
"manifest_version": 3,
|
|
"action": {
|
|
"default_icon": "img/logo/gray.png",
|
|
"default_title": "Redux DevTools",
|
|
"default_popup": "devpanel.html#popup"
|
|
},
|
|
"commands": {
|
|
"devtools-window": {
|
|
"description": "DevTools window"
|
|
},
|
|
"devtools-remote": {
|
|
"description": "Remote DevTools"
|
|
},
|
|
"_execute_action": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+E"
|
|
}
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "img/logo/16x16.png",
|
|
"48": "img/logo/48x48.png",
|
|
"128": "img/logo/128x128.png"
|
|
},
|
|
"options_ui": {
|
|
"page": "options.html"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.bundle.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"exclude_globs": ["https://www.google*"],
|
|
"js": ["content.bundle.js"],
|
|
"run_at": "document_start",
|
|
"all_frames": true
|
|
},
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"exclude_globs": ["https://www.google*"],
|
|
"js": ["page.bundle.js"],
|
|
"run_at": "document_start",
|
|
"all_frames": true,
|
|
"world": "MAIN"
|
|
}
|
|
],
|
|
"devtools_page": "devtools.html",
|
|
"externally_connectable": {
|
|
"ids": ["*"]
|
|
},
|
|
"permissions": ["notifications", "contextMenus", "storage"],
|
|
"host_permissions": ["file:///*", "http://*/*", "https://*/*"],
|
|
"content_security_policy": {
|
|
"extension_pages": "script-src 'self'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
|
|
}
|
|
}
|