YouTube Timestamps
YouTube Timestamps is a plugin to track timestamps on any video which contains them.
YouTube Timestamps क्या है?
YouTube Timestamps tylerjdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "YouTube Timestamps is a plugin to track timestamps on any video which contains them."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Timestamps एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
YouTube Timestamps is a plugin to track timestamps on any video which contains them. On YouTube, a content creator can add timestamps to either the description, or within the comments - which any user is free and able to do if the comment section permits. This plugin will grab those timestamps and display them in an easy to read format. The current timestamp selected will be highlighted, and marked as a heading under the title of the video. * Features - Automatically selects timestamp if present. - Allows user to skip to previous/next track. - Plenty of customization. - Accessible and easy to use. - Open Source! * Notes This is an ongoing plugin, which will gradually receive updates. For any issues/bugs found, or possible enhancements to be added, please open up a ticket via GitHub; https://github.com/TylerJDev/YouTube-Timestamps * Changelog To see future changes, check out the changelog @ https://github.com/TylerJDev/YouTube-Timestamps/blob/master/CHANGELOG.md - 1.0.4 Added initial setting "color" to handleYoutube.js, fixed issue with next/previous buttons - 1.0.3 Removed logs, minor bug fixes - 1.0.2 Fixed issue with settings - 1.0.1 Minor bug fixes, updated icon. * Other This plugin is not affiliated with YouTube. It will always be available for free and open source.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | mopckogdjleiljpnmmafmlieekoenhbe |
आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-timestamps/mopckogdjleiljpnmmafmlieekoenhbe |
विवरण | YouTube Timestamps is a plugin to track timestamps on any video which contains them. |
फ़ाइल का आकार | 38.88 KB |
स्थापना संख्या | 324 |
वर्तमान संस्करण | 1.0.6 |
अंतिम अपडेट | 2020-04-28 |
प्रकाशन तिथि | 2020-04-28 |
रेटिंग | 2.86/5 कुल 7 रेटिंग्स |
डेवलपर | tylerjdev |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/TylerJDev/YouTube-Timestamps |
सहायता पृष्ठ URL | https://github.com/TylerJDev/YouTube-Timestamps/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamps", "version": "1.0.6", "description": "YouTube Timestamps is a plugin to track timestamps on any video which contains them.", "permissions": [ "*:\/\/*.youtube.com\/*", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/handleYoutube.js" ], "css": [ "css\/yt_timestamps.css" ], "run_at": "document_idle" } ], "browser_action": { "default_popup": "html\/interface.html" }, "manifest_version": 2, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |