Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Hide Twitch Chat Users",
"description": "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).",
"version": "2.1.1",
"manifest_version": 3,
"browser_specific_settings": {
"gecko": {
"id": "{6b982795-4e75-4bc0-a1d8-616f4eb39970}"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*://*.twitch.tv/*"
],
"js": [
"content-script.js"
]
}
],
"permissions": [
"storage"
]
}