YouTube video length

Shows video length next to YouTube video links

Qu'est-ce que YouTube video length ?

YouTube video length est une extension Chrome développée par Brian, et sa fonction principale est "Shows video length next to YouTube video links".

Captures d'Écran de l'Extension

screenshot
screenshot

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

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

                        Shows video duration next to YouTube links. For example "Cool video [2:30]".

Also a tooltip showing additional video information appears when your mouse hovers over a YouTube link showing.


More information:
 - Shows when a video is unavailable - [❌]
 - Shows when a video is blocked in your region - [❌ country blocked]
 - Shows when a video is age restricted - [18+]
 - Works on text and image links
 - Accounts for videos with an offset. A 2 minute video with a 1 minute offset is shown as having a 1 minute duration.

If you have any issues please leave a comment here or log them on Github.

Code available on Github: https://github.com/Brian-Gaffney/YouTube-video-length-Chrome-extension                    

Informations de Base sur l'Extension

Nom YouTube video length YouTube video length
ID lfkbfhglojdeoebdkpmgmphplhanchff
URL Officiel https://chrome.google.com/webstore/detail/youtube-video-length/lfkbfhglojdeoebdkpmgmphplhanchff
Description Shows video length next to YouTube video links
Taille du Fichier 120 KB
Nombre d'Installations 482
Version Actuelle 2.1.1
Dernière Mise à Jour 2017-07-30
Date de Publication 2017-07-30
Évaluation 4.20/5 Total 10 Évaluations
Développeur Brian
Type de Paiement free
Site Web de l'Extension https://github.com/Brian-Gaffney/YouTube-video-length-Chrome-extension
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube video length",
    "description": "Shows video length next to YouTube video links",
    "version": "2.1.1",
    "permissions": [
        "https:\/\/api.youtube.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_title": "Shows video length next to YouTube video links",
        "default_icon": {
            "19": "icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "main.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}