Pictaflow: Blocked Search for YouTube™

Pictaflow: Blocked Search for YouTube™

Makes watching YouTube productive

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Pictaflow: Blocked Search for YouTubeâ„¢",
  "description": "Makes watching YouTube productive",
  "version": "1.1.2",
  "manifest_version": 3,
  "background": {
    "service_worker": "pictaflow-background-wrapper.js"
  },
  "icons": {
    "128": "pictaflow.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "hider.css"
      ],
      "js": [
        "content-script.js"
      ],
      "all_frames": true
    }
  ],
  "options_page": "options.html",
  "action": {
    "default_icon": "pictaflow.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "constants.mjs",
        "common.mjs",
        "db-requests.mjs",
        "content-script.mjs",
        "library.mjs",
        "wallpaper.webp",
        "stemmer.bundle.js",
        "notification.mjs"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}