Crunchyroll Timestamp Helper

This extension will allow you to click on timestamps from chat and move to the specified time in the video

什么是Crunchyroll Timestamp Helper?

Crunchyroll Timestamp Helper是由Mario开发的Chrome扩展程序,该扩展的主要功能是“This extension will allow you to click on timestamps from chat and move to the specified time in the video”。

扩展截图

screenshot

下载Crunchyroll Timestamp Helper扩展crx文件

下载Crunchyroll Timestamp Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Allows timestamps to be clickable in chat and skips forward to the timestamp when clicked.                    

扩展基本信息

名称 Crunchyroll Timestamp Helper Crunchyroll Timestamp Helper
ID pamhedcogfnafpdblkogpeediihohjob
官方URL https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob
简介 This extension will allow you to click on timestamps from chat and move to the specified time in the video
文件大小 136 KB
安装次数 34
当前版本 1.0.3
更新时间 2019-10-20
上架时间 2019-10-20
开发者 Mario
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crunchyroll Timestamp Helper",
    "description": "This extension will allow you to click on timestamps from chat and move to the specified time in the video",
    "version": "1.0.3",
    "author": "Mathew Anjos",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "images\/icon.png"
    },
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "permissions": [
        "activeTab",
        "*:\/\/*.crunchyroll.com\/*"
    ]
}