Video Chapters for YouTube
Navigate inside YouTube videos using chapters
Video Chapters for YouTube क्या है?
Video Chapters for YouTube https://videoken.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Navigate inside YouTube videos using chapters"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Video Chapters for YouTube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Video Chapters for YouTube provides an easy to use time-stamped summary of all the topics (chapters) discussed inside a video. You can use topic summary to jump to any part of the video. Frequently asked questions (FAQ) 👉 How are these topics generated? There are two ways. 1) If topics are present in the video description or comments, they are picked from there. 2) They are generated by our AI algorithms which processes visual and spoken content. More information is here - https://videoken.com 👉 What information do you collect? We do not collect any personal data or usage information. 👉 I have a specific feedback for you to consider We love the feedback provided by our users. Please write to us at [email protected]
एक्सटेंशन की मूल जानकारी
नाम | Video Chapters for YouTube |
ID | pfneegfmgamaabfmcokmjkllioiconnp |
आधिकारिक URL | https://chromewebstore.google.com/detail/video-chapters-for-youtub/pfneegfmgamaabfmcokmjkllioiconnp |
विवरण | Navigate inside YouTube videos using chapters |
फ़ाइल का आकार | 38.58 KB |
स्थापना संख्या | 1,549 |
वर्तमान संस्करण | 2.2.0 |
अंतिम अपडेट | 2021-10-09 |
प्रकाशन तिथि | 2020-05-06 |
रेटिंग | 4.23/5 कुल 26 रेटिंग्स |
डेवलपर | https://videoken.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://videoken.com/ |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Chapters for YouTube", "description": "Navigate inside YouTube videos using chapters", "version": "2.2.0", "minimum_chrome_version": "66.0", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png", "256": "icons\/256.png" }, "permissions": [ "storage" ], "browser_action": { "default_icon": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png" }, "default_popup": "browser_action.html" }, "content_scripts": [ { "matches": [ "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "js\/inject.js" ], "css": [ "css\/inject.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "js\/comments.js" ] } |