Work Buddy Web Extension

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

Merlin
Additional files are visible only to premium users

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"
}