YouTube Markup
You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…
YouTube Markup क्या है?
YouTube Markup Umut Korkmaz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Markup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational video, you can mark the minute where something you are interested in is located, so that you can quickly find what you are looking for when you look at the same educational video again.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Markup |
ID | emhjhcepnjieabmcmioendnlpbbhlnbn |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-markup/emhjhcepnjieabmcmioendnlpbbhlnbn |
विवरण | You can use this tool to mark the parts of videos you watch on YouTube that are important to you. For example, in an educational… |
फ़ाइल का आकार | 26.09 KB |
स्थापना संख्या | 46 |
वर्तमान संस्करण | 1.1.1 |
अंतिम अपडेट | 2023-03-02 |
प्रकाशन तिथि | 2022-09-06 |
रेटिंग | 5.00/5 कुल 10 रेटिंग्स |
डेवलपर | Umut Korkmaz |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/umutkorkmaaz/youtube-marker |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Markup", "version": "1.1.1", "icons": { "16": ".\/assets\/icon\/youtube-markup-16x16.png", "48": ".\/assets\/icon\/youtube-markup-48x48.png", "128": ".\/assets\/icon\/youtube-markup-128x128.png" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": ".\/assets\/js\/background.min.js" }, "action": { "default_title": "YouTube Markup", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ ".\/assets\/js\/content.min.js" ], "css": [ ".\/assets\/css\/all.min.css" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ] } |