YouTube Timestamper

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

What is YouTube Timestamper?

YouTube Timestamper is a Chrome extension developed by IAmVisco, and its main feature is "Allows you to quickly copy current video/stream timestamp (with offset).".

Extension Screenshots

screenshot

Download YouTube Timestamper Extension CRX File

Download YouTube Timestamper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Icon by Iconpacks.                    

Extension Basic Information

Name YouTube Timestamper YouTube Timestamper
ID fpjlholgdibolbjehinkkmbgodapojmp
Official URL https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp
Description Allows you to quickly copy current video/stream timestamp (with offset).
File Size 16.88 KB
Installation Count 82
Current Version 1.3.0
Last Updated 2023-06-21
Publish Date 2021-05-07
Rating 5.00/5 Total 3 Ratings
Developer IAmVisco
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}