YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Hvad er YouTube Shorts Remover?
YouTube Shorts Remover er en Chrome-udvidelse udviklet af http://zalwicker.dev, og dens hovedfunktion er "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".
Udvidelsesskærmbilleder
Download YouTube Shorts Remover-udvidelses-CRX-fil
Download YouTube Shorts Remover-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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!
Grundlæggende oplysninger om udvidelsen
Navn | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
Officiel URL | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
Beskrivelse | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
Filstørrelse | 20.47 KB |
Antal Installationer | 865 |
Nuværende Version | 1.2 |
Senest Opdateret | 2023-06-11 |
Udgivelsesdato | 2022-12-06 |
Bedømmelse | 3.73/5 Samlet 15 Bedømmelser |
Udvikler | http://zalwicker.dev |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.zalwicker.dev/projects |
Understøttede Sprog | 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" ] } |