Crunchyroll Timestamp Helper

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

¿Qué es Crunchyroll Timestamp Helper?

Crunchyroll Timestamp Helper es una extensión de Chrome desarrollada por Mario, y su función principal es "This extension will allow you to click on timestamps from chat and move to the specified time in the video".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Crunchyroll Timestamp Helper

Descarga archivos de extensión Crunchyroll Timestamp Helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Crunchyroll Timestamp Helper Crunchyroll Timestamp Helper
ID pamhedcogfnafpdblkogpeediihohjob
URL Oficial https://chromewebstore.google.com/detail/crunchyroll-timestamp-hel/pamhedcogfnafpdblkogpeediihohjob
Descripción This extension will allow you to click on timestamps from chat and move to the specified time in the video
Tamaño del Archivo 136 KB
Cantidad de Instalaciones 34
Versión Actual 1.0.3
Última Actualización 2019-10-20
Fecha de Publicación 2019-10-20
Desarrollador Mario
Tipo de Pago free
Idiomas Soportados 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\/*"
    ]
}