YouTube Timestamper

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

Cos'è YouTube Timestamper?

YouTube Timestamper è un'estensione di Chrome sviluppata da IAmVisco, e la sua funzione principale è "Allows you to quickly copy current video/stream timestamp (with offset).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube Timestamper

Scarica i file di estensione YouTube Timestamper 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

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

Icon by Iconpacks.                    

Informazioni di Base sull'Estensione

Nome YouTube Timestamper YouTube Timestamper
ID fpjlholgdibolbjehinkkmbgodapojmp
URL Ufficiale https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp
Descrizione Allows you to quickly copy current video/stream timestamp (with offset).
Dimensione del File 16.88 KB
Conteggio Installazioni 82
Versione Corrente 1.3.0
Ultimo Aggiornamento 2023-06-21
Data di Pubblicazione 2021-05-07
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore IAmVisco
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}