Crunchyroll Timestamp Helper

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

Apa itu Crunchyroll Timestamp Helper?

Crunchyroll Timestamp Helper adalah ekstensi Chrome yang dikembangkan oleh Mario, dan fitur utamanya adalah "This extension will allow you to click on timestamps from chat and move to the specified time in the video".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Crunchyroll Timestamp Helper

Unduh file ekstensi Crunchyroll Timestamp Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Crunchyroll Timestamp Helper Crunchyroll Timestamp Helper
ID pamhedcogfnafpdblkogpeediihohjob
URL Resmi https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob
Deskripsi This extension will allow you to click on timestamps from chat and move to the specified time in the video
Ukuran File 136 KB
Jumlah Instalasi 34
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2019-10-20
Tanggal Publikasi 2019-10-20
Pengembang Mario
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
    ]
}