12345678910111213141516171819202122232425262728 |
- {
- "manifest_version": 3,
- "name": "LV Extract",
- "version": "1.0",
- "description": "Extract Measurements from LibreView.",
- "permissions": ["scripting"],
- "host_permissions": ["<all_urls>"],
- "background": {
- "service_worker": "background.js"
- },
- "content_scripts": [
- {
- "matches": ["*://*.libreview.com/*", "*://*.leadershiphealth.local/*", "*://*.mindbodycbt.com/*", "*://*.libreview.io/*"],
- "js": ["jquery.js", "content.js"],
- "css": ["style.css"],
- "all_frames": true
- }
- ],
- "action": {
- "default_title": "LV Extract"
- },
- "web_accessible_resources": [
- {
- "resources": ["sidebar.html"],
- "matches": ["<all_urls>"]
- }
- ]
- }
|