OpenVideo – ad-free streaming

OpenVideo – ad-free streaming

Watch all of the videos – but none of the ads! (...even on sites which block adblockers)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "OpenVideo – ad-free streaming",
  "short_name": "OpenVideo",
  "description": "Watch all of the videos – but none of the ads! (...even on sites which block adblockers)",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "action": {
    "default_icon": "logos/logo256.png",
    "default_popup": "pages/popupmenu/index.html"
  },
  "icons": {
    "16": "logos/logo16.png",
    "48": "logos/logo48.png",
    "64": "logos/logo64.png",
    "128": "logos/logo128.png",
    "256": "logos/logo256.png"
  },
  "background": {
    "service_worker": "background-scripts/background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://openvideo-streaming.github.io/*",
    "*://dood.pm/*",
    "*://*.mxdcontent.net/*",
    "https://*.mp4upload.com:282/*",
    "*://*/*ov-id=*"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "version": "4.2.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/allFramesScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/ovWebPage.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/topPageScript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject-scripts/searchvideos.js",
        "pages/popupmenu/index.html",
        "pages/runisolatedscript/index.html",
        "pages/welcome/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}