Youtube Skip Videos

This extension gives you the possibility to skip Youtube autoplay videos

Youtube Skip Videos là gì?

Youtube Skip Videos là một tiện ích mở rộng Chrome được phát triển bởi Megroplan, và tính năng chính của nó là "This extension gives you the possibility to skip Youtube autoplay videos".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Youtube Skip Videos

Tải xuống các tệp mở rộng Youtube Skip Videos dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Just add a song to the blacklist and it will disappear forever the Youtube auto-play song lists.
Any suggestion is appreciated.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Youtube Skip Videos Youtube Skip Videos
ID innnldmilgnenognmdbjljofbkbmblff
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff
Mô tả This extension gives you the possibility to skip Youtube autoplay videos
Kích Thước Tệp 171 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.1.3
Cập Nhật Lần Cuối 2019-06-27
Ngày Phát Hành 2019-06-27
Đánh Giá 4.86/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Megroplan
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}