Video ads skipper

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

Video ads skipperとは何ですか?

Video ads skipperはadminによって開発されたChromeの拡張機能で、その主な機能は「Save time while browsing the internet and get rid of tiresome ads!」です。

拡張機能のスクリーンショット

screenshot

Video ads skipper拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}