LOONY : On-Screen YouTube Comments

LOONY : On-Screen YouTube Comments

On-Screen YouTube Comments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "LOONY : On-Screen YouTube Comments",
  "name": "LOONY : On-Screen YouTube Comments",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "LOONY : On-Screen YouTube Comments",
    "default_popup": "popup.html"
  },
  "description": "On-Screen YouTube Comments",
  "version": "2.2",
  "permissions": [
    "tabs",
    "storage",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "/static/js/main.js"
      ],
      "css": [
        "/static/css/main.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js",
      "hot-reload.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "chat16.png",
    "32": "chat32.png",
    "48": "chat512.png",
    "128": "chat128.png"
  },
  "web_accessible_resources": [
    "*.svg",
    "*.png"
  ]
}