Youtube Skip Videos
This extension gives you the possibility to skip Youtube autoplay videos
什麼是Youtube Skip Videos?
Youtube Skip Videos是由Megroplan開發的Chrome擴展程式,該擴展的主要功能是“This extension gives you the possibility to skip Youtube autoplay videos”。
擴展截圖
下載Youtube Skip Videos擴展crx文件
下載Youtube Skip Videos擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Just add a song to the blacklist and it will disappear forever the Youtube auto-play song lists. Any suggestion is appreciated.
擴展基本資訊
名稱 | |
ID | innnldmilgnenognmdbjljofbkbmblff |
官方網址 | https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff |
簡介 | This extension gives you the possibility to skip Youtube autoplay videos |
檔案大小 | 171 KB |
安裝次數 | 26 |
目前版本 | 1.1.3 |
更新時間 | 2019-06-27 |
上架時間 | 2019-06-27 |
評分 | 4.86/5 共 7 次評分 |
開發者 | Megroplan |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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\/*" ] } ] } |