YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Wat is YouTube Shorts Remover?
YouTube Shorts Remover is een Chrome-extensie ontwikkeld door http://zalwicker.dev, en de belangrijkste functie is "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Shorts Remover
Download YouTube Shorts Remover-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
Officiële URL | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
Beschrijving | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
Bestandsgrootte | 20.47 KB |
Aantal Installaties | 865 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2023-06-11 |
Publicatiedatum | 2022-12-06 |
Beoordeling | 3.73/5 Totaal 15 Beoordelingen |
Ontwikkelaar | http://zalwicker.dev |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.zalwicker.dev/projects |
Ondersteunde Talen | 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" ] } |