mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-22 17:46:56 +03:00
83b2c19a11
* Update Chrome manifest.json * Remove use of window in background * Test devpanel * Inject pageScript using new API * Keep connection from devpanel to background alive * Keep connection from content script to background alive * Replace page action with action * Cleanup syncOptions * Update options to not rely on background page access * Start work on updating popup * Updates * Remove window * Get opening in a separate window working * Remove pageScriptWrap * Add socket to panelStore * Fix tests * Try to use MV3 for Firefox * Fix path * Fix Chrome E2E tests * Revert unintentional change * Skip Electron tests for now Looks like they're still working through stuff in https://github.com/electron/electron/issues/41613 * Better image centering The Firefox popup did not like the old CSS. This is still not perfect, but it's better than it was. * Create shaggy-taxis-cross.md
65 lines
2.1 KiB
JSON
65 lines
2.1 KiB
JSON
{
|
|
"version": "3.1.10",
|
|
"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:;"
|
|
},
|
|
"update_url": "https://clients2.google.com/service/update2/crx",
|
|
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsdJEPwY92xUACA9CcDBDBmbdbp8Ap3cKQ0DJTUuVQvqb4FQAv8RtKY3iUjGvdwuAcSJQIZwHXcP2aNDH3TiFik/NhRK2GRW8X3OZyTdkuDueABGP2KEX8q1WQDgjX/rPIinGYztUrvoICw/UerMPwNW62jwGoVU3YhAGf+15CgX2Y6a4tppnf/+1mPedKPidh0RsM+aJY98rX+r1SPAHPcGzMjocLkqcT75DZBXer8VQN14tOOzRCd6T6oy7qm7eWru8lJwcY66qMQvhk0osqEod2G3nA7aTWpmqPFS66VEiecP9PgZlp8gQdgZ3dFhA62exydlD55JuRhiMIR63yQIDAQAB"
|
|
}
|