Autoskip Youtube Ads

Allows you to autoskip any youtube ad once it is possible

Autoskip Youtube Adsคืออะไร?

Autoskip Youtube Ads เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jonkotzonev และคุณลักษณะหลักของมันคือ "Allows you to autoskip any youtube ad once it is possible"

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

screenshot
screenshot

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

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

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

                        This extension will auto skip all the in-video ads that show up in youtube. This is not an AdBlocker it is an Ad Skipper and works only for Youtube videos, allowing you to watch without the need of constantly hitting "Skip ad". To turn it on, you have to install it and enable it. The default action is skip. To stop it - hit the Button that shows the current status and switch it to off. When the status shows in green with the 'ON' label you skipper is working and you can go to every youtube page without worrying for skipping ads. If you want to switch it off, just click again on the status button and it will tun to red with the label 'OFF', you can refresh page and ads will not be Auto-skipped anymore.                    

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

ชื่อ Autoskip Youtube Ads Autoskip Youtube Ads
ID fdhnlmakcifkamoadlpgiemgekddkfjb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/autoskip-youtube-ads/fdhnlmakcifkamoadlpgiemgekddkfjb
คำอธิบาย Allows you to autoskip any youtube ad once it is possible
ขนาดไฟล์ 11.05 KB
จำนวนการติดตั้ง 56
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2023-11-21
วันที่เผยแพร่ 2022-07-07
ผู้พัฒนา jonkotzonev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autoskip Youtube Ads",
    "description": "Allows you to autoskip any youtube ad once it is possible",
    "icons": {
        "16": "icons8-check-all-stickers-16.png",
        "32": "icons8-check-all-stickers-32.png",
        "128": "icons8-check-all-128.png"
    },
    "version": "3.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_title": "Auto Skip Youtube Ads",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}