Focus AI - Block Sites & Stay Focused

Focus AI - Block Sites & Stay Focused

Stay focused and improve productivity. Block sites and spam with just one click. Save 3 hours every week

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Focus AI - Block Sites & Stay Focused",
  "version": "1.0.1",
  "description": "Stay focused and improve productivity. Block sites and spam with just one click. Save 3 hours every week",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "16": "icons/logohead.png",
      "24": "icons/logohead.png",
      "32": "icons/logohead.png"
    }
  },
  "icons": {
    "16": "icons/logohead.png",
    "48": "icons/logohead.png",
    "128": "icons/logohead.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting",
    "alarms",
    "notifications",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "host_permissions": [
    "*://mail.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScriptBlockSite.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup/popup.js",
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}