YouTube Progress Bar

Adds a progress bar below YouTube videos

YouTube Progress Barคืออะไร?

YouTube Progress Bar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bggrund และคุณลักษณะหลักของมันคือ "Adds a progress bar below YouTube videos"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Progress Bar

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Progress Bar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Progress Bar YouTube Progress Bar
ID gcbpebcnhbpcommcmoiaepfaalanakhh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-progress-bar/gcbpebcnhbpcommcmoiaepfaalanakhh
คำอธิบาย Adds a progress bar below YouTube videos
ขนาดไฟล์ 5.94 KB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-07-19
วันที่เผยแพร่ 2021-07-18
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา bggrund
อีเมล anonymous123gm@gmail.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/bggrund/YouTubeProgressBar
ภาษาที่รองรับ 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"
        }
    ]
}