YT Skip Ads

This extension attempts to skip the YouTube ads automatically

YT Skip Adsとは何ですか?

YT Skip AdsはFurqanによって開発されたChromeの拡張機能で、その主な機能は「This extension attempts to skip the YouTube ads automatically」です。

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

screenshot
screenshot

YT Skip Ads拡張機能のCRXファイルをダウンロード

YT Skip Ads拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension basically automates two things for you, so you can save yourselves a few seconds of time and avoid mundane tasks:
1. Auto-skips those 5 second ads on YouTube: 
YouTube usually plays ads before the videos, and these ads have a countdown timer of around 5 seconds before the ad can be skipped using the "Skip Ad" button, which only appears after few seconds. This extension tries to skip the ad immediately and automatically for you, even before the ad countdown timer ends. This works when the ad is a "skippable" ad. 
2. Dismisses those annoying overlay ads that appear over the video at the bottom, with a remarkably small button to close them.                    

拡張機能の基本情報

名前 YT Skip Ads YT Skip Ads
ID lahknfhfeikbpljolkheigimmcfhplga
公式URL https://chromewebstore.google.com/detail/yt-skip-ads/lahknfhfeikbpljolkheigimmcfhplga
説明 This extension attempts to skip the YouTube ads automatically
ファイルサイズ 17.31 KB
インストール数 34
現在のバージョン 1.0
最終更新日 2021-09-14
公開日 2021-09-14
開発者 Furqan
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YT Skip Ads",
    "description": "This extension attempts to skip the YouTube ads automatically",
    "version": "1.0",
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "YouTube Skip Ads"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "src\/css\/main.css"
            ],
            "js": [
                "src\/js\/dom-watcher.js"
            ],
            "run_at": "document_end"
        }
    ]
}