YouTube Timestamper

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

Vad är YouTube Timestamper?

YouTube Timestamper är en Chrome-tillägg utvecklad av IAmVisco, och dess huvudfunktion är "Allows you to quickly copy current video/stream timestamp (with offset).".

Tilläggsskärmbilder

screenshot

Ladda ner YouTube Timestamper-förlängningens CRX-fil

Ladda ner YouTube Timestamper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Icon by Iconpacks.                    

Grundläggande Information om Tillägg

Namn YouTube Timestamper YouTube Timestamper
ID fpjlholgdibolbjehinkkmbgodapojmp
Officiell webbadress https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp
Beskrivning Allows you to quickly copy current video/stream timestamp (with offset).
Filstorlek 16.88 KB
Antal Installationer 82
Aktuell Version 1.3.0
Senast Uppdaterad 2023-06-21
Publiceringsdatum 2021-05-07
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare IAmVisco
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}