UTube Ad Skipper

This is a simple chrome extension to skip YouTube ads. It helps the user to skip ads which plays at the start of any video for…

UTube Ad Skipperคืออะไร?

UTube Ad Skipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pradiptosensarma และคุณลักษณะหลักของมันคือ "This is a simple chrome extension to skip YouTube ads. It helps the user to skip ads which plays at the start of any video for…"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UTube Ad Skipper

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

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

                        This is a simple chrome extension to skip YouTube ads. It helps the user to skip ads which plays at the start of any video for FREE.

WHY USE THIS EXTENSION?
1.It's Free of cost.
2.No sign up is required.
3.Enjoy Ad free YouTube.                    

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

ชื่อ UTube Ad Skipper UTube Ad Skipper
ID dkjmpcpfphjeepabikjggndlllhnejkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/utube-ad-skipper/dkjmpcpfphjeepabikjggndlllhnejkf
คำอธิบาย This is a simple chrome extension to skip YouTube ads. It helps the user to skip ads which plays at the start of any video for…
ขนาดไฟล์ 2.47 MB
จำนวนการติดตั้ง 351
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2023-07-26
วันที่เผยแพร่ 2023-03-01
ผู้พัฒนา pradiptosensarma
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UTube Ad Skipper",
    "version": "1.2",
    "manifest_version": 3,
    "icons": {
        "16": "images\/utubeadskipper.png",
        "48": "images\/utubeadskipper.png",
        "128": "images\/utubeadskipper.png"
    },
    "background": {
        "service_worker": "js\/pop.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "watchscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules_1.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "webRequest",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "pop.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_popup": "button.html",
        "default_title": "UTubeAdSkipper",
        "default_icon": "images\/utubeadskipper.png"
    }
}