YouTube Background Ad Skip Extension

Automatically Skip ads on YouTube. This is not an ad blocker

YouTube Background Ad Skip Extension là gì?

YouTube Background Ad Skip Extension là một tiện ích mở rộng Chrome được phát triển bởi Krysp_Coder, và tính năng chính của nó là "Automatically Skip ads on YouTube. This is not an ad blocker".

Ả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 Background Ad Skip Extension

Tải xuống các tệp mở rộng YouTube Background Ad Skip Extension 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

                        Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.                    

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

Tên YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
URL Chính Thức https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
Mô tả Automatically Skip ads on YouTube. This is not an ad blocker
Kích Thước Tệp 17.34 KB
Số Lần Cài Đặt 867
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2018-06-20
Ngày Phát Hành 2018-06-20
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Krysp_Coder
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 Background Ad Skip Extension",
    "short_name": "YBASE",
    "version": "0.1.1",
    "description": "Automatically Skip ads on YouTube. This is not an ad blocker",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false,
        "matches": [
            "https:\/\/www.youtube.com?*"
        ]
    },
    "browser_action": {
        "default_icon": "images\/media-skip-forward-xxl.png"
    },
    "icons": {
        "16": "images\/media-skip-forward16.png",
        "32": "images\/media-skip-forward32.png",
        "48": "images\/media-skip-forward48.png",
        "128": "images\/media-skip-forward128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ]
        }
    ]
}