YouTube Auto

Automatically Like and Subscribe from YouTube!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "action": {
    "default_icon": {
      "32": "data/icons/icon-32.png",
      "38": "data/icons/icon-38.png",
      "128": "data/icons/icon-128.png"
    },
    "default_popup": "data/interface/index.html?popup",
    "default_title": "__MSG_app_name__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "bundled-content-script.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_app_description__",
  "host_permissions": [
    "<all_urls>"
  ],
  "homepage_url": "https://www.codehemu.com/2022/04/youtube-auto-extension.html",
  "icons": {
    "32": "data/icons/icon-32.png",
    "38": "data/icons/icon-38.png",
    "128": "data/icons/icon-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_app_name__",
  "permissions": [
    "storage",
    "scripting",
    "tabs"
  ],
  "short_name": "YT Auto",
  "version": "2.0.3",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}