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\/*"
    ]
}