YouTube Timestamper

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

Was ist YouTube Timestamper?

YouTube Timestamper ist eine Chrome-Erweiterung, die von IAmVisco entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to quickly copy current video/stream timestamp (with offset).".

Erweiterungsscreenshots

screenshot

YouTube Timestamper-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Timestamper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Icon by Iconpacks.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Timestamper YouTube Timestamper
ID fpjlholgdibolbjehinkkmbgodapojmp
Offizielle URL https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp
Beschreibung Allows you to quickly copy current video/stream timestamp (with offset).
Dateigröße 16.88 KB
Installationsanzahl 82
Aktuelle Version 1.3.0
Letztes Update 2023-06-21
Veröffentlichungsdatum 2021-05-07
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler IAmVisco
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}