YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Was ist YouTube Shorts Remover?
YouTube Shorts Remover ist eine Chrome-Erweiterung, die von http://zalwicker.dev entwickelt wurde, und ihr Hauptmerkmal ist "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".
Erweiterungsscreenshots
YouTube Shorts Remover-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Shorts Remover-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
Removes YouTube shorts so your subscription feed only shows long-form videos. Also has the ability to remove upcoming videos, mixes, watched videos, and other annoying things on YouTube. I just want to watch regular videos, and now you can too!
Grundlegende Informationen zur Erweiterung
Name | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
Offizielle URL | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
Beschreibung | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
Dateigröße | 20.47 KB |
Installationsanzahl | 865 |
Aktuelle Version | 1.2 |
Letztes Update | 2023-06-11 |
Veröffentlichungsdatum | 2022-12-06 |
Bewertung | 3.73/5 Insgesamt 15 Bewertungen |
Entwickler | http://zalwicker.dev |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.zalwicker.dev/projects |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Shorts Remover", "version": "1.2", "description": "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.", "icons": { "32": "images\/noshorts32.png", "48": "images\/noshorts48.png", "128": "images\/noshorts128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "scripts\/background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "action": { "default_popup": "views\/settings.html" }, "permissions": [ "storage" ] } |