YouTube Focus Mode
Hides recommendations and comments from YouTube videos to help you focus, and prevents you from browsing.
Was ist YouTube Focus Mode?
YouTube Focus Mode ist eine Chrome-Erweiterung, die von annaazzam entwickelt wurde, und ihr Hauptmerkmal ist "Hides recommendations and comments from YouTube videos to help you focus, and prevents you from browsing.".
Erweiterungsscreenshots
YouTube Focus Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Focus 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
Hides recommendations and comments from YouTube videos to help you focus, and prevents you from browsing.
Grundlegende Informationen zur Erweiterung
Name | YouTube Focus Mode |
ID | aiickpjplakbajmoglephfflijahgblj |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-focus-mode/aiickpjplakbajmoglephfflijahgblj |
Beschreibung | Hides recommendations and comments from YouTube videos to help you focus, and prevents you from browsing. |
Dateigröße | 8.73 KB |
Installationsanzahl | 617 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-06-28 |
Veröffentlichungsdatum | 2020-06-27 |
Bewertung | 4.95/5 Insgesamt 21 Bewertungen |
Entwickler | annaazzam |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Focus Mode", "description": "", "version": "1.0", "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "extension.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] } } |