YouTube Timestamper

Allows you to quickly copy current video/stream timestamp (with offset).

¿Qué es YouTube Timestamper?

YouTube Timestamper es una extensión de Chrome desarrollada por IAmVisco, y su función principal es "Allows you to quickly copy current video/stream timestamp (with offset).".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión YouTube Timestamper

Descarga archivos de extensión YouTube Timestamper 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

                        A small utility tool that allows you to copy current video or stream timestamp.

Icon by Iconpacks.                    

Información Básica de la Extensión

Nombre YouTube Timestamper YouTube Timestamper
ID fpjlholgdibolbjehinkkmbgodapojmp
URL Oficial https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp
Descripción Allows you to quickly copy current video/stream timestamp (with offset).
Tamaño del Archivo 16.88 KB
Cantidad de Instalaciones 82
Versión Actual 1.3.0
Última Actualización 2023-06-21
Fecha de Publicación 2021-05-07
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador IAmVisco
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Timestamper",
    "version": "1.3.0",
    "description": "Allows you to quickly copy current video\/stream timestamp (with offset).",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_title": "YouTube Timestamper"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*",
                "https:\/\/www.youtube.com\/live\/*"
            ],
            "js": [
                "inject-button.js",
                "utils.js"
            ],
            "css": [
                "button.css"
            ]
        }
    ],
    "options_ui": {
        "page": "settings\/index.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "128": "icons\/icon128.png"
    }
}