Deepmode - Intelligent website blocker

Deepmode - Intelligent website blocker

Stay on task, online

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Deepmode - Intelligent website blocker",
  "short_name": "Deepmode",
  "version": "0.14",
  "description": "Stay on task, online",
  "permissions": [
    "identity",
    "activeTab",
    "tabs",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "dist/background/index.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/content_scripts/index.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "dist/content_scripts/index.css"
  ],
  "browser_action": {
    "default_popup": "dist/popup/popup.html",
    "default_icon": {
      "16": "images/icon_16.png",
      "32": "images/icon_32.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    }
  },
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "oauth2": {
    "client_id": "771123873717-jq2973lg9sjkkvhs0nepeuk5p5bl5aes.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "manifest_version": 2
}