Youtube Comment Bot

Youtube Comment Bot

Youtube Comment Bot is a powerful extension for Youtube. It automatically comments your search video list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Youtube Comment Bot",
  "version": "1.0.22",
  "description": "Youtube Comment Bot is a powerful extension for Youtube. It automatically comments your search video list.",
  "icons": {
    "16": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "browser_action": {
    "default_icon": "icons/logo.png",
    "default_title": "Youtube Comment Bot",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "scripts": [
      "js/jquery-3.2.1.min.js",
      "js/core.js",
      "js/utils.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://youtube.com/*",
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/core.js",
        "js/parser.js",
        "js/utils.js",
        "js/auto.js",
        "js/comment.js",
        "js/content.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "pages/option.html",
  "permissions": [
    "storage",
    "https://fonts.googleapis.com/",
    "https://*.getwebooster.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}