YouTube video length

Shows video length next to YouTube video links

YouTube video lengthとは何ですか?

YouTube video lengthはBrianによって開発されたChromeの拡張機能で、その主な機能は「Shows video length next to YouTube video links」です。

拡張機能のスクリーンショット

screenshot
screenshot

YouTube video length拡張機能のCRXファイルをダウンロード

YouTube video length拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 YouTube video length YouTube video length
ID lfkbfhglojdeoebdkpmgmphplhanchff
公式URL https://chrome.google.com/webstore/detail/youtube-video-length/lfkbfhglojdeoebdkpmgmphplhanchff
説明 Shows video length next to YouTube video links
ファイルサイズ 120 KB
インストール数 482
現在のバージョン 2.1.1
最終更新日 2017-07-30
公開日 2017-07-30
評価 4.20/5 合計 10 レビュー
開発者 Brian
支払い方法 free
拡張機能のウェブサイト https://github.com/Brian-Gaffney/YouTube-video-length-Chrome-extension
対応言語 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"
            ]
        }
    ]
}