manifest.json 694 B

12345678910111213141516171819202122232425262728
  1. {
  2. "manifest_version": 3,
  3. "name": "LV Extract",
  4. "version": "1.0",
  5. "description": "Extract Measurements from LibreView.",
  6. "permissions": ["scripting"],
  7. "host_permissions": ["<all_urls>"],
  8. "background": {
  9. "service_worker": "background.js"
  10. },
  11. "content_scripts": [
  12. {
  13. "matches": ["*://*.libreview.com/*", "*://*.leadershiphealth.local/*", "*://*.mindbodycbt.com/*", "*://*.libreview.io/*"],
  14. "js": ["jquery.js", "content.js"],
  15. "css": ["style.css"],
  16. "all_frames": true
  17. }
  18. ],
  19. "action": {
  20. "default_title": "LV Extract"
  21. },
  22. "web_accessible_resources": [
  23. {
  24. "resources": ["sidebar.html"],
  25. "matches": ["<all_urls>"]
  26. }
  27. ]
  28. }