Comment Overlay

Comment Overlay

Read comments and watch Youtube videos at the same time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Comment Overlay",
  "version": "1.2",
  "web_accessible_resources": [
    "mypage.htm"
  ],
  "description": "Read comments and watch Youtube videos at the same time.",
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "exclude_globs": [],
      "include_globs": [
        "https://www.youtube.com/watch*?v=*",
        "https://www.youtube.com/"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "content.js",
        "popup.js"
      ],
      "matches": [
        "https://www.youtube.com/watch*",
        "https://www.youtube.com/"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Comment Overlay",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2
}