Work Buddy Web Extension

An extension that helps you take breaks from work and make sure you don't go to other websites during your work periods
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Work Buddy Web Extension",
  "version": "1.1",
  "description": "An extension that helps you take breaks from work and make sure you don't go to other websites during your work periods",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "action": {
    "default_icon": "16.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "notifications",
    "alarms",
    "tabs",
    "webNavigation"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}