YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Co je YouTube Shorts Remover?
YouTube Shorts Remover je rozšíření Chrome vyvinuté http://zalwicker.dev, a jeho hlavní funkcí je „Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření YouTube Shorts Remover
Stáhněte si soubory rozšíření YouTube Shorts Remover ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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!
Základní Informace o Rozšíření
Název | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
Oficiální URL | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
Popis | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
Velikost souboru | 20.47 KB |
Počet instalací | 865 |
Aktuální Verze | 1.2 |
Poslední Aktualizace | 2023-06-11 |
Datum Vydání | 2022-12-06 |
Hodnocení | 3.73/5 Celkem 15 Hodnocení |
Vývojář | http://zalwicker.dev |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.zalwicker.dev/projects |
Podporované Jazyky | 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" ] } |