Newtube ( Youtube Style Customizer )

Newtube ( Youtube Style Customizer )

Customize your Youtube website with a lot customizable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Newtube ( Youtube Style Customizer )",
  "version": "4.0.0",
  "description": "Customize your Youtube website with a lot customizable.",
  "homepage_url": "https://github.com/AzPepoze/Newtube",
  "default_locale": "en",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "64": "icon/64.png",
    "128": "icon/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon/64.png",
        "asset/*"
      ],
      "matches": [
        "*://www.youtube.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "Page.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "Background.js"
  },
  "commands": {
    "Enable": {
      "suggested_key": "Alt+Shift+Z",
      "description": "Toggle Enable"
    },
    "Setting": {
      "suggested_key": "Alt+Shift+X",
      "description": "Toggle Setting"
    }
  },
  "host_permissions": [
    "*://www.youtube.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "Newtube@AzPepoze"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}