Youtube Study Mode
No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.
Was ist Youtube Study Mode?
Youtube Study Mode ist eine Chrome-Erweiterung, die von zkjiang12 entwickelt wurde, und ihr Hauptmerkmal ist "No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.".
Erweiterungsscreenshots
Youtube Study Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube Study Mode-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
Finish your work faster by being less distracted on Youtube. Instead of the Youtube home page being filled with distracting videos, it's only a search bar. When watching a video the recommendations are also hidden. This way you won't accidentally get distracted and spend hours watching videos. Instead, this will help you quickly finish work so you can enjoy free time.
Grundlegende Informationen zur Erweiterung
Name | Youtube Study Mode |
ID | phkgjapblkjghdpbnbkjphgjploajonl |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-study-mode/phkgjapblkjghdpbnbkjphgjploajonl |
Beschreibung | No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode. |
Dateigröße | 172 KB |
Installationsanzahl | 121 |
Aktuelle Version | 3.1.1 |
Letztes Update | 2023-08-29 |
Veröffentlichungsdatum | 2023-07-05 |
Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
Entwickler | zkjiang12 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Study Mode", "version": "3.1.1", "manifest_version": 3, "description": "No distractions on Youtube when studying. Click the icon of the extension to enter or exit study mode.", "icons": { "16": "\/icon.png", "32": "\/icon.png", "48": "\/icon.png", "128": "\/icon.png" }, "action": { "default_icon": { "16": "\/icon.png", "32": "\/icon.png", "48": "\/icon.png", "128": "\/icon.png" } }, "background": { "service_worker": "\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "\/yt.js" ], "css": [ "\/style.css" ] } ], "web_accessible_resources": [ { "resources": [ "logo.png", "stars.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |