Voat - Reddit Comments on YouTube & Web Pages

Voat - Reddit Comments on YouTube & Web Pages

View the Reddit comments of any YouTube video or web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "3.1.1",
  "name": "__MSG_extName__",
  "short_name": "Voat",
  "description": "__MSG_extDesc__",
  "author": "__MSG_extName__",
  "default_locale": "en",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "storage",
    "webNavigation",
    "*://*.reddit.com/*"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icon48.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}