Video ads skipper

Save time while browsing the internet and get rid of tiresome ads!

Video ads skipperคืออะไร?

Video ads skipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย admin และคุณลักษณะหลักของมันคือ "Save time while browsing the internet and get rid of tiresome ads!"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video ads skipper

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

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

                        The add-on allows you to skip ads while browsing youtube. After the first 5 seconds the ad will be skipped and you can enjoy your favorite movie 
or music clip. Don't waste time on unnecessary ads, focus on the content, use the saved time for yourself!                    

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

ชื่อ Video ads skipper Video ads skipper
ID gdoohnigblfkgnoidfndpghlohkanpfd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd
คำอธิบาย Save time while browsing the internet and get rid of tiresome ads!
ขนาดไฟล์ 55.48 KB
จำนวนการติดตั้ง 631
เวอร์ชันปัจจุบัน 2.2.2
อัปเดตครั้งล่าสุด 2022-11-08
วันที่เผยแพร่ 2022-11-08
ผู้พัฒนา admin
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video ads skipper",
    "short_name": "Video ads skipper",
    "description": "Save time while browsing the internet and get rid of tiresome ads!",
    "manifest_version": 3,
    "version": "2.2.2",
    "background": {
        "service_worker": "source\/worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "source\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "source\/content_yt.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "resource\/logo128.png"
    }
}