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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Track total time spent watching, scale video duration with video speed, and track total time saved when using faster playback"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Time Tools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}