TimeSkip

Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.

TimeSkipとは何ですか?

TimeSkipはRomen Poirier Taksevによって開発されたChromeの拡張機能で、その主な機能は「Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Tired of having to look in the comments to find the time of the title card while binging anime? Look no further! TimeSkip will look through the comments and skip you to the title card, all at the press of a button.                    

拡張機能の基本情報

名前 TimeSkip TimeSkip
ID giaaeacihhelmkfcdfkepoijleaddajp
公式URL https://chromewebstore.google.com/detail/timeskip/giaaeacihhelmkfcdfkepoijleaddajp
説明 Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.
ファイルサイズ 11.28 KB
インストール数 20
現在のバージョン 1.3.0
最終更新日 2021-10-14
公開日 2021-09-26
評価 5.00/5 合計 2 レビュー
開発者 Romen Poirier Taksev
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TimeSkip",
    "version": "1.3.0",
    "description": "Skips you to the title card of an episode on CrunchyRoll. Currently works with One Piece and Black Clover.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.htm",
        "default_icon": []
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.crunchyroll.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "playback.js",
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "tabs"
    ],
    "manifest_version": 2,
    "icons": {
        "128": "TimeSkip 128x128.png"
    }
}