Better YouTube Subscriptions
Hide YouTube Shorts and videos you have already watched from your subscriptions feed !
Was ist Better YouTube Subscriptions?
Better YouTube Subscriptions ist eine Chrome-Erweiterung, die von OptiSearch entwickelt wurde, und ihr Hauptmerkmal ist "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !".
Erweiterungsscreenshots
Better YouTube Subscriptions-Erweiterungs-CRX-Datei herunterladen
Laden Sie Better YouTube Subscriptions-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
Better YouTube Subscriptions is a simple browser extension that allows you to hide the YouTube Shorts videos that are polluting your subscriptions feed. It can also hide the videos that you have already watched. Of course, you can make them appear again with a simple click of a button. In short, it cleans your YouTube Subscriptions feed to only show what you want to watch !
Grundlegende Informationen zur Erweiterung
Name | Better YouTube Subscriptions |
ID | hbopiiffeioghjoeakkknpcealnlomod |
Offizielle URL | https://chromewebstore.google.com/detail/better-youtube-subscripti/hbopiiffeioghjoeakkknpcealnlomod |
Beschreibung | Hide YouTube Shorts and videos you have already watched from your subscriptions feed ! |
Dateigröße | 28 KB |
Installationsanzahl | 37 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-02-26 |
Veröffentlichungsdatum | 2022-09-29 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | OptiSearch |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://dj0ulo.github.io/OptiSearch/privacy.html |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better YouTube Subscriptions", "version": "1.0", "manifest_version": 3, "description": "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !", "icons": { "128": "images\/icon_128.png", "1024": "images\/icon_1024.png" }, "permissions": [ "storage" ], "action": { "default_popup": "src\/pop-up\/index.html" }, "web_accessible_resources": [ { "resources": [ "src\/style.css" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "src\/settings.js", "src\/utils.js", "src\/content_script.js" ] } ] } |