| 1234567891011121314151617181920212223242526272829 |
- {
- "manifest_version": 3,
- "name": "Three.js DevTools",
- "version": "1.10",
- "description": "Developer tools extension for Three.js",
- "icons": {
- "128": "icons/128-light.png"
- },
- "action": {},
- "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"
- ]
- }
|