Scrolling Time Guardian

Scrolling Time Guardian

Scrolling Time Guardian: Your Digital Wellness Guardian to help track and alert you on time spent on mindless scrolling!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": " Scrolling Time Guardian",
  "description": " Scrolling Time Guardian: Your Digital Wellness Guardian to help track and alert you on time spent on mindless scrolling!",
  "version": "0.0.5",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "img/black.png",
    "48": "img/black.png",
    "128": "img/black.png"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/lib/jquery.min.js",
        "js/content.js"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "Balanced Screen Nutrition: Track your daily scrolling for a healthier wellbeing!",
    "default_popup": "html/popup.html",
    "default_icon": "img/black.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}