Phoenix Blocker

Phoenix Blocker

Browser extension add-on for the Phoenix desktop application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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://*/*"
  ]
}