manifest.json 645 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "manifest_version": 3,
  3. "name": "Dify Chatbot",
  4. "version": "1.5",
  5. "description": "This is a chrome extension to inject a dify chatbot on any pages",
  6. "content_scripts": [
  7. {
  8. "matches": ["<all_urls>"],
  9. "js": ["content.js"]
  10. }
  11. ],
  12. "permissions": ["webRequest", "storage"],
  13. "action": {
  14. "default_popup": "options.html",
  15. "default_icon": {
  16. "16": "images/16.png",
  17. "32": "images/32.png",
  18. "48": "images/48.png",
  19. "128": "images/128.png"
  20. }
  21. },
  22. "icons": {
  23. "16": "images/16.png",
  24. "32": "images/32.png",
  25. "48": "images/48.png",
  26. "128": "images/128.png"
  27. }
  28. }