Twitch: Hide Elements
Hide Twitch visual elements like Recommended Channels, Prime Loot, etc.
什么是Twitch: Hide Elements?
Twitch: Hide Elements是由Baltimora开发的Chrome扩展程序,该扩展的主要功能是“Hide Twitch visual elements like Recommended Channels, Prime Loot, etc.”。
扩展截图
下载Twitch: Hide Elements扩展crx文件
下载Twitch: Hide Elements扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The extension has about 40 features for removing visual elements from any part of the twitch.tv Features: - Hide Left Section (Followed channels, Recommended channels, Viewers also watch, Live Status & Viewers) - Hide Top Section (Logo, Tabs, Search box, Prime loot, Notifications, Whispers, Get bits, Avatar) - Hide Mid Section (Extensions overlay, Tags, Buttons, Section about streamer, Description panel) - Hide Right Section (Chat header, Leaderboard of gifters, Events overlay, Channel points, Chat footer) - Chat Details (Hide badges, Highlighted chat messages, Change usernames color) - Other (Video players carousel on main page, Elements on clips page, Channel and category recommendations, and other twitch elements)
扩展基本信息
名称 | Twitch: Hide Elements |
ID | gllfjplkknpblehhpfdbcllmkhmfkomf |
官方URL | https://chromewebstore.google.com/detail/twitch-hide-elements/gllfjplkknpblehhpfdbcllmkhmfkomf |
简介 | Hide Twitch visual elements like Recommended Channels, Prime Loot, etc. |
文件大小 | 268 KB |
安装次数 | 957 |
当前版本 | 1.4.1 |
更新时间 | 2022-12-17 |
上架时间 | 2022-02-18 |
评分 | 5.00/5 共12次评分 |
开发者 | Baltimora |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://docs.google.com/forms/d/e/1FAIpQLSeacKe3T4ROaYxh91lA0QslXbO-bP0032uV1pMwxiS2tbdpTw/viewform |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "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": [ "carousel_pause.js" ], "matches": [ "*:\/\/*.twitch.tv\/*" ], "extension_ids": [] } ], "version": "1.4.1", "description": "Hide Twitch visual elements like Recommended Channels, Prime Loot, etc.", "offline_enabled": true } |