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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}