Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Crunchyroll Intro Skipperとは何ですか?

Crunchyroll Intro SkipperはIan Hsiaoによって開発されたChromeの拡張機能で、その主な機能は「Allows intros to be skipped through a skip button on Crunchyroll」です。

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

screenshot

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

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

拡張機能の使用方法

                        Skips anime intros with a single button.
Finds when the intro ends by skipping to the timestamp of the first advertisement.
*Update* it seems like crunchyroll has changed the location of their advertisements from right after the intro to somewhere in the middle so it's likely the extension will skip to somewhere random.                    

拡張機能の基本情報

名前 Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID hbglapgegjickodindimfgfmjmhhdlii
公式URL https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/hbglapgegjickodindimfgfmjmhhdlii
説明 Allows intros to be skipped through a skip button on Crunchyroll
ファイルサイズ 29.51 KB
インストール数 1,091
現在のバージョン 1.0
最終更新日 2020-08-05
公開日 2020-06-17
評価 2.81/5 合計 16 レビュー
開発者 Ian Hsiao
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://github.com/ianjjhsiao/skipintro
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "matches": [
                "https:\/\/static.crunchyroll.com\/vilos-v2\/web\/vilos\/player.html*"
            ]
        }
    ],
    "description": "Allows intros to be skipped through a skip button on Crunchyroll",
    "icons": {
        "16": "icon.png",
        "128": "Big_icon.png"
    },
    "background": {
        "scripts": [
            "background_script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "name": "Crunchyroll Intro Skipper",
    "permissions": [
        "https:\/\/www.crunchyroll.com\/*"
    ],
    "version": "1.0"
}