manifest.json 595 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "manifest_version": 3,
  3. "name": "Three.js DevTools",
  4. "version": "1.10",
  5. "description": "Developer tools extension for Three.js",
  6. "icons": {
  7. "128": "icons/128-light.png"
  8. },
  9. "action": {},
  10. "devtools_page": "index.html",
  11. "background": {
  12. "service_worker": "background.js",
  13. "type": "module"
  14. },
  15. "content_scripts": [{
  16. "matches": ["<all_urls>"],
  17. "js": ["content-script.js"],
  18. "all_frames": true,
  19. "run_at": "document_start"
  20. }],
  21. "web_accessible_resources": [{
  22. "resources": ["bridge.js"],
  23. "matches": ["<all_urls>"]
  24. }],
  25. "permissions": [
  26. "activeTab",
  27. "webNavigation"
  28. ]
  29. }
粤ICP备19079148号