YouTube Recommendation Decliner
Declines video recommendations from YouTube to help lessen procrastination.
Was ist YouTube Recommendation Decliner?
YouTube Recommendation Decliner ist eine Chrome-Erweiterung, die von Anders Steen entwickelt wurde, und ihr Hauptmerkmal ist "Declines video recommendations from YouTube to help lessen procrastination.".
Erweiterungsscreenshots
YouTube Recommendation Decliner-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Recommendation Decliner-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 videos that are considered recommended videos. This includes the YouTube home and trending pages, as well as the related videos appearing below or to the side of video playback. Recommended videos appearing after videos are also declined. Searches, subscriptions, history, library and channels are unaffected. The point is to get the recommended videos out of sight, in order to decrease the risk of users getting stuck clicking on recommended videos for hours.
Grundlegende Informationen zur Erweiterung
Name | YouTube Recommendation Decliner |
ID | feoddkggeangnmgoomlcdldcffoidake |
Offizielle URL | https://chromewebstore.google.com/detail/youtube-recommendation-de/feoddkggeangnmgoomlcdldcffoidake |
Beschreibung | Declines video recommendations from YouTube to help lessen procrastination. |
Dateigröße | 18.43 KB |
Installationsanzahl | 15 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2020-12-14 |
Veröffentlichungsdatum | 2020-03-11 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Anders Steen |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Recommendation Decliner", "short_name": "YT Decliner", "version": "1.1.0", "manifest_version": 2, "description": "Declines video recommendations from YouTube to help lessen procrastination.", "icons": { "16": "\/images\/icon_16.png", "128": "\/images\/icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "all_frames": true, "js": [ "\/js\/contentScript.js" ] } ], "browser_action": { "default_icon": "\/images\/icon_128.png", "default_popup": "\/html\/popup.html" }, "permissions": [ "storage", "tabs" ] } |