YouTube - Ad Skipper ᴮᴱᵀᴬ

Automatically closes banner ads and clicks 'Skip Ad' buttons for you.

YouTube - Ad Skipper ᴮᴱᵀᴬ là gì?

YouTube - Ad Skipper ᴮᴱᵀᴬ là một tiện ích mở rộng Chrome được phát triển bởi James Forsyth, và tính năng chính của nó là "Automatically closes banner ads and clicks 'Skip Ad' buttons for you.".

Tải xuống tệp CRX của tiện ích mở rộng YouTube - Ad Skipper ᴮᴱᵀᴬ

Tải xuống các tệp mở rộng YouTube - Ad Skipper ᴮᴱᵀᴬ 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

                        An alternative to AdBlock, specifically for YouTube.

Instead of completely blocking ads which prevents YouTube channels from earning any ad revenue, this extension detects ads appearing and clicks the skip button instantly, just like a regular user would, only much quicker and effortlessly.

It doesn't block ads, it just clicks close and skip for you automatically. Useful if you're tabbed out, or just lazy.

For banner ads, it clicks the close button - usually before the ad is even visible. 
For pre-roll ads that you have to watch for 5 seconds, it will click the skip button as soon as it can.


New in version 0.4
- Added the Force Skip button (next to the the search bar). This allows you to manually skip ads in the rare cases when ads are not automatically detected. It also has the useful side-effect of skipping 'Sign in to view this video' age restrictions.
- Added the ability to prevent Ad Skipper from skipping a pre-roll ad. Simply hold Ctrl as the Skip button countdown reaches zero. Because sometimes you're actually interested in an ad.                    

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

Tên YouTube - Ad Skipper ᴮᴱᵀᴬ YouTube - Ad Skipper ᴮᴱᵀᴬ
ID gemeogeehabbjfikkhdofljafpgmdeoo
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-ad-skipper-%E1%B4%AE%E1%B4%B1%E1%B5%80%E1%B4%AC/gemeogeehabbjfikkhdofljafpgmdeoo
Mô tả Automatically closes banner ads and clicks 'Skip Ad' buttons for you.
Kích Thước Tệp 12.28 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2017-12-13
Ngày Phát Hành 2017-12-13
Đánh Giá 2.89/5 Tổng số 18 Đánh Giá
Nhà Phát Triển James Forsyth
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 - Ad Skipper \u1d2e\u1d31\u1d40\u1d2c",
    "description": "Automatically closes banner ads and clicks 'Skip Ad' buttons for you.",
    "version": "0.4",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "css\/hide.css"
            ],
            "js": [
                "js\/skip.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_title": "Force skip ad or age restriction",
        "default_icon": "icons\/skip-19.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "icons": {
        "19": "icons\/skip-19.png",
        "38": "icons\/skip-38.png",
        "128": "icons\/skip-128.png"
    }
}