FilterFred YouTube Age Filter

FilterFred YouTube Age Filter

Browse YouTube safely with FilterFred

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "FilterFred YouTube Age Filter",
  "description": "Browse YouTube safely with FilterFred",
  "version": "1.0.4",
  "icons": {
    "128": "icons/icon.png"
  },
  "permissions": [
    "tabs",
    "identity"
  ],
  "host_permissions": [
    "http://www.youtube.com/*",
    "https://www.youtube.com/*"
  ],
  "action": {
    "default_icon": {
      "32": "icons/icon.png"
    },
    "default_title": "Open FilterFred on YouTube only"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "MacCtrl+Shift+Y"
      },
      "description": "Toggle Popup"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "static/jquery-3.6.4.min.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "oauth2": {
    "client_id": "423000357478-mkkkfppo78gm2g8c4oj0nl4cbnrpcgme.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}