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文件

下載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
官方網址 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"
    }
}