YouTube Progress Bar

Adds a progress bar below YouTube videos

YouTube Progress Bar là gì?

YouTube Progress Bar là một tiện ích mở rộng Chrome được phát triển bởi bggrund, và tính năng chính của nó là "Adds a progress bar below YouTube videos".

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

screenshot

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

Tải xuống các tệp mở rộng YouTube Progress Bar 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

                        Adds a permanent progress bar and timestamp beneath YouTube videos and movies

Source: https://github.com/bggrund/YouTubeProgressBar                    

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

Tên YouTube Progress Bar YouTube Progress Bar
ID gcbpebcnhbpcommcmoiaepfaalanakhh
URL Chính Thức https://chromewebstore.google.com/detail/youtube-progress-bar/gcbpebcnhbpcommcmoiaepfaalanakhh
Mô tả Adds a progress bar below YouTube videos
Kích Thước Tệp 5.94 KB
Số Lần Cài Đặt 35
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-07-19
Ngày Phát Hành 2021-07-18
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển bggrund
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bggrund/YouTubeProgressBar
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Progress Bar",
    "version": "1.0",
    "description": "Adds a progress bar below YouTube videos",
    "icons": {
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": "128.png"
    },
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "time.js"
            ],
            "css": [
                "time.css"
            ],
            "run_at": "document_idle"
        }
    ]
}