YouTube Timestamper

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

YouTube Timestamper là gì?

YouTube Timestamper là một tiện ích mở rộng Chrome được phát triển bởi IAmVisco, và tính năng chính của nó là "Allows you to quickly copy current video/stream timestamp (with offset).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Timestamper

Tải xuống các tệp mở rộng YouTube Timestamper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Icon by Iconpacks.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Timestamper YouTube Timestamper
ID fpjlholgdibolbjehinkkmbgodapojmp
URL Chính Thức https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp
Mô tả Allows you to quickly copy current video/stream timestamp (with offset).
Kích Thước Tệp 16.88 KB
Số Lần Cài Đặt 82
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2023-06-21
Ngày Phát Hành 2021-05-07
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển IAmVisco
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}