YouTube Ad Auto-skipper

YouTube Ad Skipper is an extension that auto skips ads after YouTube provides a skip ad button. It does not block an ad.

YouTube Ad Auto-skipperคืออะไร?

YouTube Ad Auto-skipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shreyadahal และคุณลักษณะหลักของมันคือ "YouTube Ad Skipper is an extension that auto skips ads after YouTube provides a skip ad button. It does not block an ad."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Ad Auto-skipper

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

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

                        A browser extension that automates skipping ad on YouTube. This is not an ad blocker; it just automates the process of clicking on the "Skip Ad" button on YouTube.

This is basically useful when you are watching a YouTube video (or a playlist), and an ad starts playing. YouTube allows you to skip the ad after 5 seconds, but if you can't be bothered to click it yourself (or you are AFK), this extension clicks that button for you.

Configurations can be set per channel. Did you know: YouTubers are paid 50% of the revenue for any ads playing on their videos. You can use this extension to play ads longer (or not skip) for channels you want to support, or skip them entirely for some.

========= New in version 2.0 =============

‣ Ability to stop countdown to skip ad.

Some ads just grip you and you want to watch it till the end. Now you'll see a countdown before the ad is skipped and a button to end the countdown.

========= New in version 1.0 =============

Ad Skipper now has so much more to offer:

‣ You can now set how long to play the ad before skipping (as fast as 0 seconds).
‣ Mute ads automatically

Unlock these features with a support of just 3 cups of coffee a year (USD $7/yr).
The original core feature is and will always remain FREE!                    

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

ชื่อ YouTube Ad Auto-skipper YouTube Ad Auto-skipper
ID lokpenepehfdekijkebhpnpcjjpngpnd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-ad-auto-skipper/lokpenepehfdekijkebhpnpcjjpngpnd
คำอธิบาย YouTube Ad Skipper is an extension that auto skips ads after YouTube provides a skip ad button. It does not block an ad.
ขนาดไฟล์ 108 KB
จำนวนการติดตั้ง 88,322
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2023-10-11
วันที่เผยแพร่ 2019-10-19
คะแนน 3.97/5 รวมทั้งหมด 271 คะแนน
ผู้พัฒนา shreyadahal
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://github.com/squgeim/yt-ad-autoskipper
URL หน้าช่วยเหลือ https://github.com/squgeim/yt-ad-autoskipper/issues
URL หน้านโยบายความเป็นส่วนตัว https://ad-auto-skipper.web.app/privacy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Ad Auto-skipper",
    "short_name": "ad skipper",
    "description": "YouTube Ad Skipper is an extension that auto skips ads after YouTube provides a skip ad button. It does not block an ad.",
    "manifest_version": 3,
    "version": "2.0.1",
    "author": "Shreya Dahal",
    "homepage_url": "https:\/\/github.com\/squgeim\/yt-ad-autoskipper",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                ".\/youtube.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/localhost:5000\/*",
                "https:\/\/ad-auto-skipper.web.app\/*"
            ],
            "js": [
                ".\/adskipper.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Configure Ad Auto Skipper"
    },
    "options_page": "pages\/settings.html",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "logo.png"
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:5000\/*",
            "https:\/\/ad-auto-skipper.web.app\/*"
        ]
    }
}