Youtube Comment Scraper

Youtube Comment Scraper

It allows you download comments from Youtube video, extracts comments from any YouTube video, export Youtube comments to csv.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Youtube Comment Scraper",
  "description": "It allows you download comments from Youtube video, extracts comments from any YouTube video, export Youtube comments to csv.",
  "version": "1.0.2",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "Youtube Comment Scraper",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "libs/analytics.js",
      "libs/parse.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.getwebooster.com/*"
      ],
      "js": [
        "libs/jquery-3.2.1.min.js",
        "content/content.js"
      ],
      "css": [
        "libs/style.css"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage",
    "identity"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "libs/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}