YouTube video length

Shows video length next to YouTube video links

YouTube video length là gì?

YouTube video length là một tiện ích mở rộng Chrome được phát triển bởi Brian, và tính năng chính của nó là "Shows video length next to YouTube video links".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube video length

Tải xuống các tệp mở rộng YouTube video length dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube video length YouTube video length
ID lfkbfhglojdeoebdkpmgmphplhanchff
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-video-length/lfkbfhglojdeoebdkpmgmphplhanchff
Mô tả Shows video length next to YouTube video links
Kích Thước Tệp 120 KB
Số Lần Cài Đặt 482
Phiên Bản Hiện Tại 2.1.1
Cập Nhật Lần Cuối 2017-07-30
Ngày Phát Hành 2017-07-30
Đánh Giá 4.20/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Brian
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Brian-Gaffney/YouTube-video-length-Chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}