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은(는) ericw에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Track total time spent watching, scale video duration with video speed, and track total time saved when using faster playback"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube Time Tools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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