YCS - YouTube Comment Search

YCS - YouTube Comment Search

Search comments, replies, chat replay, video transcript for the current video on YouTube by contents, authors, time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "YCS - YouTube Comment Search",
  "description": "Search comments, replies, chat replay, video transcript for the current video on YouTube by contents, authors, time.",
  "version": "1.1.12",
  "author": "Eugene Gubar",
  "short_name": "YCS",
  "icons": {
    "16": "assets/images/icons/logo-ycs-16.png",
    "24": "assets/images/icons/logo-ycs-24.png",
    "32": "assets/images/icons/logo-ycs-32.png",
    "48": "assets/images/icons/logo-ycs-48.png",
    "128": "assets/images/icons/logo-ycs-128.png"
  },
  "browser_action": {
    "default_popup": "browser-action/baction.html",
    "default_icon": {
      "16": "assets/images/icons/logo-ycs-16.png",
      "24": "assets/images/icons/logo-ycs-24.png",
      "32": "assets/images/icons/logo-ycs-32.png",
      "48": "assets/images/icons/logo-ycs-48.png",
      "128": "assets/images/icons/logo-ycs-128.png"
    },
    "default_title": "YouTube Comment Search"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content-scripts/cscripts.js"
      ],
      "css": [
        "content-scripts/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "web-resources/wresources.js"
  ],
  "permissions": [
    "*://*.youtube.com/*",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1f09eef6-bc49-4f11-b4f2-da2705b2f8b4}"
    }
  }
}