YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Qu'est-ce que YouTube Shorts Remover ?
YouTube Shorts Remover est une extension Chrome développée par http://zalwicker.dev, et sa fonction principale est "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Shorts Remover
Téléchargez les fichiers d'extension YouTube Shorts Remover au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
Description | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
Taille du Fichier | 20.47 KB |
Nombre d'Installations | 865 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2023-06-11 |
Date de Publication | 2022-12-06 |
Évaluation | 3.73/5 Total 15 Évaluations |
Développeur | http://zalwicker.dev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.zalwicker.dev/projects |
Langues Prises en Charge | 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" ] } |