| 12345678910111213141516171819202122232425 |
- {
- "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": ["<all_urls>"],
- "js": ["content-script.js"],
- "all_frames": true,
- "run_at": "document_start"
- }],
- "web_accessible_resources": [{
- "resources": ["bridge.js"],
- "matches": ["<all_urls>"]
- }],
- "permissions": [
- "activeTab",
- "webNavigation"
- ]
- }
|