YouTube Comment Searcher

YouTube Comment Searcher

Explore YouTube video insights: Search comments, replies, chat replay, and transcript by content, authors, and timestamp.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "homepage_url": "https://tweetgrok.ai/",
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "css": [],
      "run_at": "document_end"
    }
  ],
  "action": {},
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "images/*",
        "inject.bundle.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ],
  "version": "1.0.4",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}