Karamel: View Reddit comments on YouTube™

Karamel: View Reddit comments on YouTube™

Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Karamel: View Reddit comments on YouTube™",
  "short_name": "Karamel",
  "description": "Step up your viewing experience by embedding relevant Reddit comments under YouTube videos.",
  "version": "1.5.0",
  "browser_action": {
    "default_icon": "icon-48.png"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "https://www.reddit.com/",
    "storage"
  ]
}