Examine source code of Phoenix Blocker

Inspect and view changes in Phoenix Blocker 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,
  "name": "Phoenix Blocker",
  "description": "Browser extension add-on for the Phoenix desktop application.",
  "version": "1.0.0",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": "images/icon48.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.*",
        "fonts/*.woff",
        "scripts/*.*",
        "df_youtube/scripts/*.*",
        "df_youtube/css/*.*",
        "*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/phoenix.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "df_youtube/scripts/df_youtube.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "nativeMessaging",
    "webNavigation",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}