E2 Work Timer

A simple Chrome extension to help you stay focused and productive while working.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "E2 Work Timer",
  "version": "0.9",
  "description": "A simple Chrome extension to help you stay focused and productive while working.",
  "permissions": [
    "storage",
    "tabs",
    "bookmarks",
    "notifications"
  ],
  "host_permissions": [
    "https://zenquotes.io/*",
    "https://www.youtube.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "animations/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}