Sponsor Skipper

Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.

Sponsor Skipperとは何ですか?

Sponsor Skipperはhttps://zackbanack.comによって開発されたChromeの拡張機能で、その主な機能は「Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.

*Notes:*
- This extension requires use of YouTube closed captions to work
- Tab must be in focus

How it works:
- Ever x seconds, the extension will read the video captions
- If a trigger word is found in close proximity to a form of the word "sponsor", then we enter into a sponsored segment
- While in a sponsored segment, if the trigger word is re-encountered or we encounter a word from the in-ad list, keep skimming through the video

GitHub: https://github.com/zbanack/youtube-sponsor-skipper/                    

拡張機能の基本情報

名前 Sponsor Skipper Sponsor Skipper
ID jfdipdnjgckbpkomodlcfhmkencihepc
公式URL https://chromewebstore.google.com/detail/sponsor-skipper/jfdipdnjgckbpkomodlcfhmkencihepc
説明 Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.
ファイルサイズ 20.04 KB
インストール数 232
現在のバージョン 1.1
最終更新日 2019-11-26
公開日 2019-11-25
評価 1.00/5 合計 1 レビュー
開発者 https://zackbanack.com
支払い方法 free
拡張機能のウェブサイト https://www.zackbanack.com
ヘルプページのURL https://www.paypal.me/zackbanack
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sponsor Skipper",
    "short_name": "Skipper",
    "description": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*",
                "http:\/\/youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "32": "\/images\/icons-32.png",
        "192": "\/images\/icons-192.png",
        "512": "\/images\/icons-512.png"
    },
    "browser_action": {
        "default_title": "Skips through YouTube in-video sponsored segments by comparing closed captions against defined trigger words.",
        "default_icon": "\/images\/icons-32.png",
        "default_popup": "index.html"
    },
    "manifest_version": 2
}