Youtube Autoclose Ads

Automatically close ads on youtube videos after an amount of seconds.

Youtube Autoclose Ads là gì?

Youtube Autoclose Ads là một tiện ích mở rộng Chrome được phát triển bởi Gabriel Duarte, và tính năng chính của nó là "Automatically close ads on youtube videos after an amount of seconds.".

Ả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 Autoclose Ads

Tải xuống các tệp mở rộng Youtube Autoclose Ads 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 close ads on youtube videos after an amount of seconds (default to 5 seconds). You can change the seconds on the settings page of the extension (chrome://extensions)

But why not just use a normal ad-block?

An ad-block completly removes all sorts of ads on youtube, making the video creator not get any money with monetization. This extension allow you to set a minimum time in which the ad will be displayed, and after that time, the ad will be closed automatically, allowing the content creator to get monetization on the video.                    

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

Tên Youtube Autoclose Ads Youtube Autoclose Ads
ID mppjhhbajcciljocgbadbhbgphjfdmhj
URL Chính Thức https://chromewebstore.google.com/detail/youtube-autoclose-ads/mppjhhbajcciljocgbadbhbgphjfdmhj
Mô tả Automatically close ads on youtube videos after an amount of seconds.
Kích Thước Tệp 722 KB
Số Lần Cài Đặt 2,427
Phiên Bản Hiện Tại 1.2.3
Cập Nhật Lần Cuối 2022-07-12
Ngày Phát Hành 2019-02-10
Đánh Giá 4.46/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Gabriel Duarte
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/GabrielDuarteM/youtube-autoclose-ads
URL Trang Trợ Giúp https://github.com/GabrielDuarteM/youtube-autoclose-ads/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Autoclose Ads",
    "version": "1.2.3",
    "description": "Automatically close ads on youtube videos after an amount of seconds.",
    "author": "Gabriel Duarte",
    "homepage_url": "https:\/\/github.com\/GabrielDuarteM\/youtube-autoclose-ads",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "youtube-autoclose-ads.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}