YouTube Timestamp Bookmarker - Gravitate Webs

Saving timestamps in YouTube videos

Qu'est-ce que YouTube Timestamp Bookmarker - Gravitate Webs ?

YouTube Timestamp Bookmarker - Gravitate Webs est une extension Chrome développée par gravitatewebs, et sa fonction principale est "Saving timestamps in YouTube videos".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension YouTube Timestamp Bookmarker - Gravitate Webs

Téléchargez les fichiers d'extension YouTube Timestamp Bookmarker - Gravitate Webs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom YouTube Timestamp Bookmarker - Gravitate Webs YouTube Timestamp Bookmarker - Gravitate Webs
ID kbpcmedhleadonchilbecnmmcfeilmml
URL Officiel https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml
Description Saving timestamps in YouTube videos
Taille du Fichier 138 KB
Nombre d'Installations 31
Version Actuelle 0.1.0.0
Dernière Mise à Jour 2022-06-08
Date de Publication 2022-06-07
Développeur gravitatewebs
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://gravitatewebs.com/
Langues Prises en Charge 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
}