YouTube Distraction Disabler
Remove distracting video suggestions on YouTube.
Hvad er YouTube Distraction Disabler?
YouTube Distraction Disabler er en Chrome-udvidelse udviklet af kaiqi.liang, og dens hovedfunktion er "Remove distracting video suggestions on YouTube.".
Udvidelsesskærmbilleder
Download YouTube Distraction Disabler-udvidelses-CRX-fil
Download YouTube Distraction Disabler-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
Just spent an hour on YouTube but still haven't got to the video that you set out to watch? Wanted to learn something on YouTube but always get distracted by your recommended feed? Fear no more, "YouTube Distraction Disabler" is here to remove all of the unrelated videos on YouTube and only show you what you want. Finally got some free time and want to deliberately procrastinate on YouTube? That's ok too, just simply click the extension icon and turn off one of the options that you choose to block. The options are "Home", "Related", "Comments" and "Notifications", which corresponds to your home feed, related videos next to the video you're currently watching, the comments down below as well as the notification bell.
Grundlæggende oplysninger om udvidelsen
Navn | YouTube Distraction Disabler |
ID | klhmhijgenkomhcobnbdnjkkefbghfab |
Officiel URL | https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab |
Beskrivelse | Remove distracting video suggestions on YouTube. |
Filstørrelse | 12.64 KB |
Antal Installationer | 163 |
Nuværende Version | 0.0.4 |
Senest Opdateret | 2023-01-18 |
Udgivelsesdato | 2020-12-07 |
Bedømmelse | 5.00/5 Samlet 5 Bedømmelser |
Udvikler | kaiqi.liang |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Distraction Disabler", "version": "0.0.4", "description": "Remove distracting video suggestions on YouTube.", "manifest_version": 2, "page_action": { "default_icon": "assets\/logo.png" }, "icons": { "128": "assets\/logo.png" }, "permissions": [ "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "extension.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "assets\/*.svg" ] } |