Inspect and view changes in Twitch: Hide Elements source codes across current and past versions
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": "Twitch: Hide Elements",
"icons": {
"16": "imgs/icon-16.png",
"32": "imgs/icon-32.png",
"48": "imgs/icon-48.png",
"128": "imgs/icon-128.png"
},
"action": {
"default_icon": "imgs/icon-128.png",
"default_popup": "index.html",
"default_title": "Twitch: Hide Elements"
},
"author": "Baltimora",
"background": {
"service_worker": "back.js"
},
"content_scripts": [
{
"css": [
"elements.css"
],
"js": [
"elements.js"
],
"all_frames": true,
"matches": [
"*://*.twitch.tv/*"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"*://*.twitch.tv/*"
],
"web_accessible_resources": [
{
"resources": [
"fonts/*",
"imgs/*",
"carousel_pause.js",
"copy-welcome.js"
],
"matches": [],
"extension_ids": []
}
],
"version": "1.4.0",
"description": "Hide Twitch visual elements like Recommended Channels, Prime Loot, etc.",
"offline_enabled": true,
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}