Crunchyroll Intro Skipper

Allows intros to be skipped through a skip button on Crunchyroll

Crunchyroll Intro Skipperとは何ですか?

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

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

screenshot

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

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

拡張機能の使用方法

                        This extension parses through the episode comments to determine if there are any intro timestamps posted. If there are no valid timestamps within the comments, it will fallback to using Crunchyroll's ad locations to determine the best position.

To use this extension, a `SKIP INTRO` button is overlaid onto the Crunchyroll video player which you can click to skip the episode intro. The button also indicates how it got the timestamp (either through someone's comment on the page, or through ad locations).                    

拡張機能の基本情報

名前 Crunchyroll Intro Skipper Crunchyroll Intro Skipper
ID enphflaephhmabkpchhgkhkfcblbhiip
公式URL https://chromewebstore.google.com/detail/crunchyroll-intro-skipper/enphflaephhmabkpchhgkhkfcblbhiip
説明 Allows intros to be skipped through a skip button on Crunchyroll
ファイルサイズ 15.16 KB
インストール数 1,310
現在のバージョン 0.2.1
最終更新日 2021-04-06
公開日 2021-03-02
評価 3.57/5 合計 14 レビュー
開発者 Ramon Quitales
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/rquitales/crunchyroll-intro-skipper
ヘルプページのURL https://github.com/rquitales/crunchyroll-intro-skipper/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "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": "assets\/images\/icon.png",
        "128": "assets\/images\/large_icon.png"
    },
    "background": {
        "scripts": [
            "js\/background_script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "name": "Crunchyroll Intro Skipper",
    "author": "Ramon Quitales",
    "permissions": [
        "https:\/\/www.crunchyroll.com\/*"
    ],
    "version": "0.2.1"
}