Search Twitch chat logs
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "SearchTTV - features for Twitch",
"version": "2",
"description": "Search Twitch chat logs",
"content_scripts": [
{
"matches": [
"https://www.twitch.tv/*"
],
"js": [
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"https://gql.twitch.tv/gql",
"https://api.twitch.tv/*"
],
"icons": {
"16": "16.png",
"48": "48.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "search-icon.png",
"default_title": "Twitch Features"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}