manifest.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "manifest_version": 3,
  3. "name": "派维斯智能体助手",
  4. "version": "0.1.3",
  5. "description": "一个辅助用户处理业务流程的智能体助手",
  6. "author": "Paiwise Team",
  7. "permissions": [
  8. "activeTab",
  9. "scripting",
  10. "storage",
  11. "tabs",
  12. "notifications",
  13. "clipboardWrite"
  14. ],
  15. "icons": {
  16. "16": "images/icon16.png",
  17. "32": "images/icon32.png",
  18. "48": "images/icon48.png",
  19. "128": "images/icon128.png"
  20. },
  21. "action": {
  22. "default_title": "派维斯智能体助手",
  23. "default_icon": {
  24. "16": "images/icon16.png",
  25. "32": "images/icon32.png",
  26. "48": "images/icon48.png",
  27. "128": "images/icon128.png"
  28. }
  29. },
  30. "background": {
  31. "service_worker": "js/background.js"
  32. },
  33. "content_scripts": [
  34. {
  35. "matches": ["<all_urls>"],
  36. "css": ["css/content.css"],
  37. "js": [
  38. "js/config.js",
  39. "js/utils.js",
  40. "js/ai-service.js",
  41. "js/libs/Readability.js",
  42. "js/page-analyzer.js",
  43. "js/content.js",
  44. "js/chat-ui.js"
  45. ]
  46. }
  47. ],
  48. "web_accessible_resources": [
  49. {
  50. "resources": ["sidebar.html", "css/*", "js/*", "templates/*"],
  51. "matches": ["<all_urls>"]
  52. }
  53. ]
  54. }