Examine source code of RelaxBlock

Inspect and view changes in RelaxBlock 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": "RelaxBlock",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "차단 도메인을 효율적으로 관리하고, 원하는 시간 동안 잠시 해제하는 기능을 제공.",
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting",
    "contextMenus"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": {
      "16": "icons/icon_128.png",
      "32": "icons/icon_128.png",
      "48": "icons/icon_128.png",
      "128": "icons/icon_128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}