yttwthmode
Twitch-like theater mode for Youtube livestreams and archives.
Was ist yttwthmode?
yttwthmode ist eine Chrome-Erweiterung, die von maquinas entwickelt wurde, und ihr Hauptmerkmal ist "Twitch-like theater mode for Youtube livestreams and archives.".
Erweiterungsscreenshots
yttwthmode-Erweiterungs-CRX-Datei herunterladen
Laden Sie yttwthmode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Changes Youtube's theater mode to emulate Twitch's. Video is displayed in the whole window with the chat on the right and goes to the bottom when the screen shrinks to half size. Source available at https://github.com/maquinas07/yttwthmode/
Grundlegende Informationen zur Erweiterung
Name | yttwthmode |
ID | ahnanfplkklemnpbjcgheicpcnodmjji |
Offizielle URL | https://chromewebstore.google.com/detail/yttwthmode/ahnanfplkklemnpbjcgheicpcnodmjji |
Beschreibung | Twitch-like theater mode for Youtube livestreams and archives. |
Dateigröße | 44.22 KB |
Installationsanzahl | 140 |
Aktuelle Version | 1.3.10 |
Letztes Update | 2024-01-14 |
Veröffentlichungsdatum | 2021-03-09 |
Bewertung | 3.86/5 Insgesamt 7 Bewertungen |
Entwickler | maquinas |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/maquinas07/yttwthmode |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "yttwthmode", "version": "1.3.10", "description": "Twitch-like theater mode for Youtube livestreams and archives.", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "dist\/content-script.js" ] } ], "action": { "default_popup": "dist\/popup\/popup.html", "default_icon": { "128": "dist\/img\/logo_128.png" } }, "permissions": [ "storage", "tabs" ], "icons": { "128": "dist\/img\/logo_128.png" }, "browser_specific_settings": { "gecko": { "id": "{ec1cc669-f6b7-4455-b288-bca14f840bf2}" } } } |