StayFree - Website Blocker & Web Analytics

StayFree - Website Blocker & Web Analytics

Analytics to help you understand and control your website usage, leading to less distractions and enhanced productivity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.35.0",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "default_locale": "en_US",
  "permissions": [
    "alarms",
    "tabs",
    "storage",
    "notifications",
    "webNavigation",
    "scripting",
    "favicon"
  ],
  "optional_permissions": [
    "history"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "_favicon/*",
        "*.css",
        "*.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content-scripts/ad-finder.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-scripts/auto-connect-redirect.js",
        "content-scripts/prompt-collector.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-scripts/block-website.js",
        "content-scripts/usage-monitoring.js"
      ]
    },
    {
      "matches": [
        "https://stayfreeapps.com/extension-get-started"
      ],
      "run_at": "document_start",
      "js": [
        "content-scripts/onboarding-redirect.js"
      ]
    },
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "content-scripts/youtube-plus.css"
      ],
      "js": [
        "content-scripts/youtube-plus.js"
      ]
    }
  ]
}