Youtube Skip Videos
This extension gives you the possibility to skip Youtube autoplay videos
Hvad er Youtube Skip Videos?
Youtube Skip Videos er en Chrome-udvidelse udviklet af Megroplan, og dens hovedfunktion er "This extension gives you the possibility to skip Youtube autoplay videos".
Udvidelsesskærmbilleder
Download Youtube Skip Videos-udvidelses-CRX-fil
Download Youtube Skip Videos-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 add a song to the blacklist and it will disappear forever the Youtube auto-play song lists. Any suggestion is appreciated.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | innnldmilgnenognmdbjljofbkbmblff |
Officiel URL | https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff |
Beskrivelse | This extension gives you the possibility to skip Youtube autoplay videos |
Filstørrelse | 171 KB |
Antal Installationer | 26 |
Nuværende Version | 1.1.3 |
Senest Opdateret | 2019-06-27 |
Udgivelsesdato | 2019-06-27 |
Bedømmelse | 4.86/5 Samlet 7 Bedømmelser |
Udvikler | Megroplan |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Skip Videos", "description": "This extension gives you the possibility to skip Youtube autoplay videos", "version": "1.1.3", "browser_action": { "default_icon": "img\/youtube.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs", "contextMenus", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "js\/jquery-3.1.1.min.js", "contentYoutube.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |