{ "version": "3.1.6", "name": "Redux DevTools", "manifest_version": 2, "description": "Redux Developer Tools for debugging application state changes.", "homepage_url": "https://github.com/reduxjs/redux-devtools", "applications": { "gecko": { "id": "extension@redux.devtools", "strict_min_version": "54.0" } }, "page_action": { "default_icon": "img/logo/38x38.png", "default_title": "Redux DevTools", "default_popup": "window.html#popup" }, "commands": { "devtools-left": { "description": "DevTools window to left" }, "devtools-right": { "description": "DevTools window to right" }, "devtools-bottom": { "description": "DevTools window to bottom" }, "devtools-remote": { "description": "Remote DevTools" } }, "icons": { "16": "img/logo/16x16.png", "48": "img/logo/48x48.png", "128": "img/logo/128x128.png" }, "options_ui": { "page": "options.html" }, "background": { "scripts": ["background.bundle.js"] }, "content_scripts": [ { "matches": [""], "js": ["content.bundle.js", "pagewrap.bundle.js"], "run_at": "document_start", "all_frames": true } ], "devtools_page": "devtools.html", "web_accessible_resources": ["page.bundle.js"], "permissions": [ "notifications", "contextMenus", "tabs", "storage", "file:///*", "http://*/*", "https://*/*" ], "content_security_policy": "script-src 'self'; object-src 'self'; img-src 'self' data:;" }