Examine source code of Site Block Pro

Inspect and view changes in Site Block Pro source codes across current and past versions
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,
  "default_locale": "en",
  "name": "Site Block Pro",
  "version": "1.0.2",
  "description": "Block sites so you can focus.",
  "homepage_url": "https://calmly.ing",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "idle",
    "unlimitedStorage",
    "alarms",
    "notifications",
    "offscreen",
    "contextMenus"
  ],
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/video/*.,p4",
        "assets/css/*.css",
        "pages/welcome/*",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}