Comment Manager for Youtubers

Comment Manager for Youtubers

This is a management tool to change from unhearted to hearted for Youtubers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Comment Manager for Youtubers",
  "version": "0.0.1",
  "description": "This is a management tool to change from unhearted to hearted for Youtubers.",
  "permissions": [
    "https://www.youtube.com/",
    "activeTab",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "*.js"
  ],
  "manifest_version": 2
}