YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Vad är YouTube Shorts Remover?
YouTube Shorts Remover är en Chrome-tillägg utvecklad av http://zalwicker.dev, och dess huvudfunktion är "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".
Tilläggsskärmbilder
Ladda ner YouTube Shorts Remover-förlängningens CRX-fil
Ladda ner YouTube Shorts Remover-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
Beskrivning | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
Filstorlek | 20.47 KB |
Antal Installationer | 865 |
Aktuell Version | 1.2 |
Senast Uppdaterad | 2023-06-11 |
Publiceringsdatum | 2022-12-06 |
Betyg | 3.73/5 Totalt 15 Betyg |
Utvecklare | http://zalwicker.dev |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.zalwicker.dev/projects |
Stödda Språk | 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" ] } |