De-Mainstream YouTube™

De-Mainstream YouTube™

Fixes the YouTube™ algorithm to remove mainstream media results from searches.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "De-Mainstream YouTube™",
  "short_name": "De-Mainstream",
  "description": "Fixes the YouTube™ algorithm to remove mainstream media results from searches.",
  "version": "1.0.5",
  "version_name": "1.0.5",
  "manifest_version": 2,
  "homepage_url": "https://www.demainstream.com",
  "incognito": "spanning",
  "offline_enabled": true,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "icons": {
    "16": "img/icons/[email protected]",
    "32": "img/icons/[email protected]",
    "48": "img/icons/[email protected]",
    "128": "img/icons/[email protected]"
  },
  "browser_action": {
    "default_title": "De-Mainstream",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "https://*.youtube.com/",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "youtube/youtube.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": false
  }
}