Twitch Chat Pins

Twitch Chat Pins

Pin the chat of specific users to watch Twitch more fun!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Twitch Chat Pins"
  },
  "content_scripts": [
    {
      "js": [
        "filter.js"
      ],
      "matches": [
        "*://twitch.tv/*",
        "*://*.twitch.tv/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "*://*.twitch.tv/*",
    "tabs",
    "webNavigation"
  ],
  "version": "1.3.0",
  "web_accessible_resources": [
    "filter.js"
  ]
}