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”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
官方URL 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\/*"
            ]
        }
    ]
}