Utube Viral

Utube Viral

This extension provides more functionality to boost and optimize your Youtube channel

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "This extension provides more functionality to boost and optimize your Youtube channel",
  "icons": {
    "16": "icon.png",
    "128": "icon.png"
  },
  "manifest_version": 3,
  "name": "Utube Viral",
  "version": "2.1.1",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Utube Viral"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch*"
      ],
      "js": [
        "./js/content.js"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/shorts*"
      ],
      "js": [
        "./js/content.js"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/@*"
      ],
      "js": [
        "./js/content.js"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/channel*"
      ],
      "js": [
        "./js/content.js"
      ]
    },
    {
      "matches": [
        "https://utubeviral.com/client/home*"
      ],
      "js": [
        "./js/client.js"
      ]
    },
    {
      "matches": [
        "https://utubeviral.com/client/earn*"
      ],
      "js": [
        "./js/earn.js"
      ]
    },
    {
      "matches": [
        "https://utubeviral.com/client/auth*"
      ],
      "js": [
        "./js/home.js"
      ]
    }
  ],
  "host_permissions": [
    "*://*.youtube.com/*",
    "*://*.utubeviral.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  }
}