YouTube Background Ad Skip Extension

Automatically Skip ads on YouTube. This is not an ad blocker

YouTube Background Ad Skip Extensionとは何ですか?

YouTube Background Ad Skip ExtensionはKrysp_Coderによって開発されたChromeの拡張機能で、その主な機能は「Automatically Skip ads on YouTube. This is not an ad blocker」です。

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

screenshot

YouTube Background Ad Skip Extension拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Automatically skip YouTube ads when the ad is able to be skipped. When an ad has the option to be skipped within 5 seconds the extension will skip the ad for you immediately. This does not block ads or skip ads that do not originally have the option to be skipped.                    

拡張機能の基本情報

名前 YouTube Background Ad Skip Extension YouTube Background Ad Skip Extension
ID ncbifbdnlggnffchafbdiefobpabajkb
公式URL https://chromewebstore.google.com/detail/youtube-background-ad-ski/ncbifbdnlggnffchafbdiefobpabajkb
説明 Automatically Skip ads on YouTube. This is not an ad blocker
ファイルサイズ 17.34 KB
インストール数 867
現在のバージョン 0.1.1
最終更新日 2018-06-20
公開日 2018-06-20
評価 3.33/5 合計 3 レビュー
開発者 Krysp_Coder
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Background Ad Skip Extension",
    "short_name": "YBASE",
    "version": "0.1.1",
    "description": "Automatically Skip ads on YouTube. This is not an ad blocker",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false,
        "matches": [
            "https:\/\/www.youtube.com?*"
        ]
    },
    "browser_action": {
        "default_icon": "images\/media-skip-forward-xxl.png"
    },
    "icons": {
        "16": "images\/media-skip-forward16.png",
        "32": "images\/media-skip-forward32.png",
        "48": "images\/media-skip-forward48.png",
        "128": "images\/media-skip-forward128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ]
        }
    ]
}