YouTube video timestamps

Displays YouTube video timecodes from descriptions and comments.

Qu'est-ce que YouTube video timestamps ?

YouTube video timestamps est une extension Chrome développée par Roman Sadovnikov, et sa fonction principale est "Displays YouTube video timecodes from descriptions and comments.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension YouTube video timestamps

Téléchargez les fichiers d'extension YouTube video timestamps 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

                        If there are timecodes in the description or comments to a YouTube video, the extension catches them and displays them under the video.

So far, the extension only shows the timecodes that you have opened on your computer.                    

Informations de Base sur l'Extension

Nom YouTube video timestamps YouTube video timestamps
ID fkcajpjelgilnhhadfpchooafgdjacpn
URL Officiel https://chromewebstore.google.com/detail/youtube-video-timestamps/fkcajpjelgilnhhadfpchooafgdjacpn
Description Displays YouTube video timecodes from descriptions and comments.
Taille du Fichier 25.97 KB
Nombre d'Installations 20
Version Actuelle 1.0
Dernière Mise à Jour 2021-04-12
Date de Publication 2021-04-12
Développeur Roman Sadovnikov
Email [email protected]
Type de Paiement free
Langues Prises en Charge id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,hu,pl,sk,sl,fi,sv,cs,el,sr,bg,iw,fa,mr,hi,bn,gu,ta,te,ml,th,am-ET,ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "128": "\/icon.png"
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "\/js\/chrome.js"
        ]
    },
    "permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "name": "YouTube video timestamps",
    "default_locale": "en",
    "description": "Displays YouTube video timecodes from descriptions and comments.",
    "browser_action": {
        "default_icon": "\/icon.png",
        "default_popup": "\/options.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "\/styles\/page_styles.css"
            ],
            "js": [
                "\/js\/content.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "styles\/*.css",
        "*.js"
    ],
    "version": "1.0"
}