Youtube Autoclose Ads

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

Youtube Autoclose Adsคืออะไร?

Youtube Autoclose Ads เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gabriel Duarte และคุณลักษณะหลักของมันคือ "Automatically close ads on youtube videos after an amount of seconds."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Autoclose Ads

ดาวน์โหลดไฟล์ส่วนขยาย Youtube Autoclose Ads ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Youtube Autoclose Ads Youtube Autoclose Ads
ID mppjhhbajcciljocgbadbhbgphjfdmhj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-autoclose-ads/mppjhhbajcciljocgbadbhbgphjfdmhj
คำอธิบาย Automatically close ads on youtube videos after an amount of seconds.
ขนาดไฟล์ 722 KB
จำนวนการติดตั้ง 2,427
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2022-07-12
วันที่เผยแพร่ 2019-02-10
คะแนน 4.46/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา Gabriel Duarte
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/GabrielDuarteM/youtube-autoclose-ads
URL หน้าช่วยเหลือ https://github.com/GabrielDuarteM/youtube-autoclose-ads/issues
ภาษาที่รองรับ 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"
    }
}