Twitch Chat Notification Filter

Twitch Chat Notification Filter

This extension filters out notifications like subscriptions from chat and conveniently shows them in the chat window separately.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitch Chat Notification Filter",
  "short_name": "Twitch Chat Notifier",
  "description": "This extension filters out notifications like subscriptions from chat and conveniently shows them in the chat window separately.",
  "version": "1.0.2",
  "author": "Ken van der Eerden",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAic4cRiuCgtJaOMw+//zEvSvkr/yUsQRSj0h32l4IRC0CjIwklma1bFLWgEat1KR0hoRCKAjiTi2tR6BBHEHrERg1U/vYok3e+i36PbCNyPSC9muMhMF+gST7L02lYdpBqv6o4CxVmNLoTcFewfHorCMWvVlsy+Xs5tjSHa1jAzoutE0rrzuhvDWjWgishJZOGZ230rdlO5Ndq+1EzaWLBSDXeb0v/2EK9QGfjuyJ+/QO/MvD+q3ZPbcsZRuMOLCNQo4xOi3IgDrMnTADG6QPT9lfYEtqwFrpe6muK5oqXTNo4bw7zqxSBWEKeOYgh+3I86fLgQVGSQo3I0aWDI1gwQIDAQAB",
  "oauth2": {
    "client_id": "860932274752-gt801g06rji5iv4pqpkk08e6ipk1vfcb.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive"
    ]
  },
  "browser_action": {
    "default_popup": "d.html",
    "default_title": "TwitchChatNotificate!"
  },
  "permissions": [
    "identity",
    "https://www.googleapis.com/",
    "activeTab",
    "*://www.twitch.tv/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.twitch.tv/*"
      ],
      "css": [
        "j.css"
      ],
      "js": [
        "j.min.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icon16.png",
    "24": "icon24.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  }
}