{ "manifest_version": 3, "name": "Three.js DevTools", "version": "1.0", "description": "Developer tools extension for Three.js", "devtools_page": "index.html", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [{ "matches": [""], "js": ["content-script.js"], "all_frames": true, "run_at": "document_start" }], "web_accessible_resources": [{ "resources": ["bridge.js"], "matches": [""] }], "permissions": [ "activeTab", "webNavigation" ] }