YouTube Timestamp Bookmarker - Gravitate Webs

Saving timestamps in YouTube videos

Was ist YouTube Timestamp Bookmarker - Gravitate Webs?

YouTube Timestamp Bookmarker - Gravitate Webs ist eine Chrome-Erweiterung, die von gravitatewebs entwickelt wurde, und ihr Hauptmerkmal ist "Saving timestamps in YouTube videos".

Erweiterungsscreenshots

screenshot
screenshot

YouTube Timestamp Bookmarker - Gravitate Webs-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Timestamp Bookmarker - Gravitate Webs-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

                        Timestamp bookmark a YouTube video at any point during the video by pressing the blue button. This extension will remember what time you saved the bookmark and you can jump to that point at any time you wish. Save as many timestamped bookmakers as you want. This is a great tool when you are presenting a video and when you are needing to jump around to certain points.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Timestamp Bookmarker - Gravitate Webs YouTube Timestamp Bookmarker - Gravitate Webs
ID kbpcmedhleadonchilbecnmmcfeilmml
Offizielle URL https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml
Beschreibung Saving timestamps in YouTube videos
Dateigröße 138 KB
Installationsanzahl 31
Aktuelle Version 0.1.0.0
Letztes Update 2022-06-08
Veröffentlichungsdatum 2022-06-07
Entwickler gravitatewebs
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://gravitatewebs.com/
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Timestamp Bookmarker - Gravitate Webs",
    "version": "0.1.0.0",
    "description": "Saving timestamps in YouTube videos",
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/bookmark.png",
                "assets\/play.png",
                "assets\/delete.png",
                "assets\/save.png"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/ext-icon.png",
            "24": "assets\/ext-icon.png",
            "32": "assets\/ext-icon.png"
        },
        "default_title": "YouTube Timestamp Bookmarker - Gravitate Webs",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}