Crunchyroll Timestamp Helper

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

Cos'è Crunchyroll Timestamp Helper?

Crunchyroll Timestamp Helper è un'estensione di Chrome sviluppata da Mario, e la sua funzione principale è "This extension will allow you to click on timestamps from chat and move to the specified time in the video".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Crunchyroll Timestamp Helper

Scarica i file di estensione Crunchyroll Timestamp Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Crunchyroll Timestamp Helper Crunchyroll Timestamp Helper
ID pamhedcogfnafpdblkogpeediihohjob
URL Ufficiale https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob
Descrizione This extension will allow you to click on timestamps from chat and move to the specified time in the video
Dimensione del File 136 KB
Conteggio Installazioni 34
Versione Corrente 1.0.3
Ultimo Aggiornamento 2019-10-20
Data di Pubblicazione 2019-10-20
Sviluppatore Mario
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}