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
电子邮箱 [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"
    }
}