Video Note & Screenshot
Go to take YouTube notes or screenshot YouTube.
Video Note & Screenshot क्या है?
Video Note & Screenshot Gemoo Inc. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Go to take YouTube notes or screenshot YouTube."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Video Note & Screenshot एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This tool helps you take screenshots from a YouTube video and extract text from the video. Check the main features: 1.Video Transcription Transcribe video to text by extracting the subtitles/closed captions. 2.Extract Text from Video Screenshots Take screenshots from the video and use the OCR function to extract text information from the video's screenshots. 3. Take screenshots from YouTube Video quickly.
एक्सटेंशन की मूल जानकारी
नाम | Video Note & Screenshot |
ID | miedbfijmibcgjjmhdccocldliepbfng |
आधिकारिक URL | https://chromewebstore.google.com/detail/video-note-screenshot/miedbfijmibcgjjmhdccocldliepbfng |
विवरण | Go to take YouTube notes or screenshot YouTube. |
फ़ाइल का आकार | 16.58 KB |
स्थापना संख्या | 5,319 |
वर्तमान संस्करण | 1.0.3 |
अंतिम अपडेट | 2023-08-15 |
प्रकाशन तिथि | 2023-06-18 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Gemoo Inc. |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://gemoo.com/tools/video-note-taking |
सहायता पृष्ठ URL | https://gemoo.com/support/ |
गोपनीयता नीति पृष्ठ URL | https://gemoo.com/privacy-policy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Note & Screenshot", "description": "Go to take YouTube notes or screenshot YouTube.", "version": "1.0.3", "manifest_version": 3, "icons": { "16": "icons\/icon-16x16.png", "48": "icons\/icon-48x48.png", "128": "icons\/icon-128x128.png" }, "permissions": [ "tabs", "activeTab", "webRequest", "scripting", "downloads" ], "host_permissions": [ "*:\/\/*\/*", "https:\/\/*.gemoo.com\/*", "https:\/\/*.youtube.com\/*" ], "action": { "default_title": "Video Note & Screenshot", "default_popup": "index.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.gemoo.com\/*" ], "css": [ "assets\/content.css" ], "js": [ "my-content-script.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" }, "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ] } |