Sponsor Blocker

Skip sponsored ads in youtube videos.

Sponsor Blockerとは何ですか?

Sponsor BlockerはCloud9 Web Servicesによって開発されたChromeの拡張機能で、その主な機能は「Skip sponsored ads in youtube videos.」です。

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

screenshot

Sponsor Blocker拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Extension attempts to block sponsorships on youtube videos.

Currently extension is in beta. Only few podcast-type youtube channels are supported.                    

拡張機能の基本情報

名前 Sponsor Blocker Sponsor Blocker
ID pjoibejadaddgagcjlibeacpnngdhlhi
公式URL https://chromewebstore.google.com/detail/sponsor-blocker/pjoibejadaddgagcjlibeacpnngdhlhi
説明 Skip sponsored ads in youtube videos.
ファイルサイズ 1.98 MB
インストール数 695
現在のバージョン 1.3
最終更新日 2021-08-13
公開日 2021-03-01
評価 5.00/5 合計 1 レビュー
開発者 Cloud9 Web Services
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sponsor Blocker",
    "version": "1.3",
    "description": "Skip sponsored ads in youtube videos.",
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/v2_16.png",
            "32": "images\/v2_32.png",
            "48": "images\/v2_48.png",
            "128": "images\/v2_128.png"
        },
        "default_title": "Sponsor Blocker",
        "default_popup": "pages\/popup.html"
    },
    "icons": {
        "16": "images\/v2_16.png",
        "32": "images\/v2_32.png",
        "48": "images\/v2_48.png",
        "128": "images\/v2_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "run.js"
            ],
            "run_at": "document_end"
        }
    ]
}