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은(는) pradiptosensarma에 의해 개발된 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…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

UTube Ad Skipper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}