Comments Search for Youtube

Comments Search for Youtube

Search youtube comments by keywords.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.114",
  "minimum_chrome_version": "98",
  "name": "Comments Search for Youtube",
  "description": "Search youtube comments by keywords.",
  "icons": {
    "32": "/assets/icon32.png",
    "128": "/assets/icon.png"
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://api.lett.app/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "/html/style.css"
      ],
      "js": [
        "/js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "/js/worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/html/*"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "action": {}
}