Hide my Youtube
One click hides all the text and thumbnails on Youtube. Another click brings it all back.
Was ist Hide my Youtube?
Hide my Youtube ist eine Chrome-Erweiterung, die von excogito entwickelt wurde, und ihr Hauptmerkmal ist "One click hides all the text and thumbnails on Youtube. Another click brings it all back.".
Erweiterungsscreenshots
Hide my Youtube-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hide my Youtube-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
One click on the extension's icon hides all the text and thumbnails on Youtube. Another click brings it all back. - Want to see the highlights for that game you missed, without spoiling the score first? - Want to keep some privacy when someone's right over your shoulder? - Want to watch just one video, without spiraling down the youtube hole?
Grundlegende Informationen zur Erweiterung
Name | Hide my Youtube |
ID | nbbgdnddemllmhllcnojhfkanmagnecg |
Offizielle URL | https://chromewebstore.google.com/detail/hide-my-youtube/nbbgdnddemllmhllcnojhfkanmagnecg |
Beschreibung | One click hides all the text and thumbnails on Youtube. Another click brings it all back. |
Dateigröße | 19.96 KB |
Installationsanzahl | 70 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2018-10-27 |
Veröffentlichungsdatum | 2018-10-27 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | excogito |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.1", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [], "page_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "Unspoiled Youtube" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "styles\/main.css" ], "js": [ "scripts\/content-script.js" ] } ] } |