Spotlight

Spotlight

Reduce your digital distractions

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.0.26",
  "name": "Spotlight",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgaTypYn5w62cpi3IfyoTRe9MAmm5rLYOAAg4l/J+7TvUsM/qZj9ms6gIkyeKnt+b95YbJcmL+csRvU+scod7svHhE0we8GnWqkjBCojHMdKtFVawP+OK+0VyC0RDp6A6Hu9Rhv09UZACqDoFfeiKIGVDJ7Fu3dz4L2Oe3khLR1dTodPgYsLY1DadOi+w0kddOWgI4eDlf6e6oR+3cztww5l8PLBNolLTq4v/NXobutB2KSnqqBmyV2uGzd1p1h5hrY6On7Id27x9ariAIUxFDRheKTcfcgIVqW/dPbkdrLd04R40s6YITHpNYrUqQhLcclajxKBJHi9CYCGWocx+qQIDAQAB",
  "description": "Reduce your digital distractions",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "128": "icon128.png"
  },
  "background": {
    "service_worker": "event.js"
  },
  "action": {
    "default_title": "Spotlight",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "notifications",
    "<all_urls>"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "signin.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}