Youtime

Youtime will pick up all the time stamps present in the comments and description for you

Youtime क्या है?

Youtime Ashwath Vijayan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Youtime will pick up all the time stamps present in the comments and description for you"।

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

screenshot
screenshot

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

crx प्रारूप में Youtime एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Youtime is a timestamp with description extractor for Youtube videos. There are times when you are listening to a playlist and wish there was an easier way to skip to the next song rather than going through the description and comments, and finding that one comment that has the timestamps in it. Well, look no further, Youtime can do that for you! Just load up the comments and hit the extension, you will find all the timestamps that exist in the comment and the description section.

But wait up, its not just hour long playlists that Youtime helps, but also the short videos which has all the interesting sections mentioned in the comments by other users, you will be able to see that too.                    

एक्सटेंशन की मूल जानकारी

नाम Youtime Youtime
ID ocaofghmcnmckbnlmgocfjemofblpgdk
आधिकारिक URL https://chromewebstore.google.com/detail/youtime/ocaofghmcnmckbnlmgocfjemofblpgdk
विवरण Youtime will pick up all the time stamps present in the comments and description for you
फ़ाइल का आकार 49.5 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-07-08
प्रकाशन तिथि 2020-07-08
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Ashwath Vijayan
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/AshwathVS
सहायता पृष्ठ URL https://github.com/AshwathVS/youtime
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtime",
    "version": "1.0",
    "description": "Youtime will pick up all the time stamps present in the comments and description for you",
    "permissions": [
        "webNavigation",
        "https:\/\/www.youtube.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Youtime - Switch to Youtube to use the extension",
        "default_icon": {
            "16": "images\/icon-disabled-16.png",
            "32": "images\/icon-disabled-32.png"
        }
    },
    "web_accessible_resources": [
        "script.js"
    ],
    "manifest_version": 2
}