You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

manifest.json 721B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "manifest_version": 3,
  3. "name": "Ragflow Extension",
  4. "description": "Ragflow for Chrome",
  5. "version": "1.0",
  6. "options_page": "options.html",
  7. "permissions": ["activeTab", "scripting", "storage"],
  8. "background": {
  9. "service_worker": "background.js"
  10. },
  11. "action": {
  12. "default_popup": "popup.html",
  13. "default_icon": {
  14. "16": "icons/icon-16x16.png",
  15. "48": "icons/icon-48x48.png",
  16. "128": "icons/icon-128x128.png"
  17. }
  18. },
  19. "content_scripts": [
  20. {
  21. "matches": ["<all_urls>"],
  22. "js": ["content.js"],
  23. "css": ["styles/popup.css"]
  24. }
  25. ],
  26. "icons": {
  27. "16": "icons/icon-16x16.png",
  28. "48": "icons/icon-48x48.png",
  29. "128": "icons/icon-128x128.png"
  30. }
  31. }