manifest.json 698 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "manifest_version": 3,
  3. "name": "Three.js DevTools",
  4. "version": "1.15",
  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. },
  14. "content_scripts": [{
  15. "matches": ["<all_urls>"],
  16. "js": ["constants.js", "bridge.js", "highlight.js"],
  17. "all_frames": true,
  18. "run_at": "document_start",
  19. "world": "MAIN",
  20. "match_about_blank": true
  21. }, {
  22. "matches": ["<all_urls>"],
  23. "js": ["content-script.js"],
  24. "all_frames": true,
  25. "run_at": "document_start",
  26. "match_about_blank": true
  27. }],
  28. "permissions": [
  29. "activeTab",
  30. "webNavigation"
  31. ]
  32. }
粤ICP备19079148号