YouTube Timestamper

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

Apa itu YouTube Timestamper?

YouTube Timestamper adalah ekstensi Chrome yang dikembangkan oleh IAmVisco, dan fitur utamanya adalah "Allows you to quickly copy current video/stream timestamp (with offset).".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi YouTube Timestamper

Unduh file ekstensi YouTube Timestamper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Icon by Iconpacks.                    

Informasi Dasar Ekstensi

Nama YouTube Timestamper YouTube Timestamper
ID fpjlholgdibolbjehinkkmbgodapojmp
URL Resmi https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp
Deskripsi Allows you to quickly copy current video/stream timestamp (with offset).
Ukuran File 16.88 KB
Jumlah Instalasi 82
Versi Saat Ini 1.3.0
Terakhir Diperbarui 2023-06-21
Tanggal Publikasi 2021-05-07
Penilaian 5.00/5 Total 3 Penilaian
Pengembang IAmVisco
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}