YouTube Moderator Watcher

YouTube Moderator Watcher

In a YouTube Live chat, the moderator's and owner's statements will be fixed on the screen for a certain period of time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Moderator Watcher",
  "version": "0.3.0",
  "manifest_version": 2,
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "images/size16.png",
    "48": "images/size48.png",
    "128": "images/size128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "default_locale": "en",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "all_frames": true,
      "matches": [
        "https://*.youtube.com/live_chat**"
      ],
      "js": [
        "storage.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "image/*"
  ],
  "browser_action": {
    "default_popup": "options.html"
  }
}