Examine source code of Let Me Focus

Inspect and view changes in Let Me Focus 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
{
  "name": "Let Me Focus",
  "version": "0.0.1",
  "description": "get back to your work hahaha",
  "icons": {
    "48": "icon/lmf.png"
  },
  "manifest_version": 3,
  "author": "hakowork",
  "permissions": [
    "storage"
  ],
  "action": {
    "browser_style": true,
    "default_title": "Let Me Focus",
    "default_popup": "popup/index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "data/index.json",
        "data/setting.json",
        "data/theme/default/index.html"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "js": [
        "main.js"
      ],
      "run_at": "document_start",
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}