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