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
官方網址 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\/*"
    ]
}