YouTube Time Tools

Track total time spent watching, scale video duration with video speed, and track total time saved when using faster playback

YouTube Time Toolsคืออะไร?

YouTube Time Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ericw และคุณลักษณะหลักของมันคือ "Track total time spent watching, scale video duration with video speed, and track total time saved when using faster playback"

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

screenshot
screenshot

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

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

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

                        Time Tracking:
Track the total amount of time you spend watching YouTube videos and the total amount of time you save while watching with faster playback rates. Includes pause/resume functionality for tracking time watched and time saved. 

Duration Shift:
Makes video duration scale with playback rate. 

By default, YouTube's video player will always display the same video duration regardless of the speed at which you are watching the video. If you choose to watch a video with faster speeds, the current time marker will increase rapidly to reflect this change. 

With this feature enabled you can now watch a 30 minute video at 2x speed and the duration marker will scale to show a new duration of 15 minutes. The current time will no longer increase rapidly to reflect the faster playback and will instead tick at a regular once-per-second rate.

Data is synced across all chrome devices using chrome.storage.sync                    

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

ชื่อ YouTube Time Tools YouTube Time Tools
ID cobnfdhokdhiglbojmoapeccpbhonhgi
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-time-tools/cobnfdhokdhiglbojmoapeccpbhonhgi
คำอธิบาย Track total time spent watching, scale video duration with video speed, and track total time saved when using faster playback
ขนาดไฟล์ 82.08 KB
จำนวนการติดตั้ง 538
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2017-04-12
วันที่เผยแพร่ 2017-04-12
คะแนน 3.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา ericw
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ericweiler/Youtube-Time-Tools
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Time Tools",
    "version": "1.0.3",
    "description": "Track total time spent watching, scale video duration with video speed, and track total time saved when using faster playback",
    "homepage_url": "https:\/\/github.com\/ericweiler\/Youtube-Time-Tools",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_title": "Youtube Speed Tools",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "all_frames": true,
            "js": [
                "inject.js"
            ],
            "run_at": "document_idle"
        }
    ]
}