manifest.json 532 B

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