MoocNote
The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube.
MoocNote क्या है?
MoocNote https://moocnote.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में MoocNote एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Take notes that link back to the appropriate place in the videos. Extra features like screen capture, drawing on the video, copy text from the video. Check your notes anytime, anywhere. All notes are organized in one single place. Simple way to add videos to playlists.
एक्सटेंशन की मूल जानकारी
नाम | MoocNote |
ID | kngebpnbpehfomchjmjgalceiifmmbch |
आधिकारिक URL | https://chromewebstore.google.com/detail/moocnote/kngebpnbpehfomchjmjgalceiifmmbch |
विवरण | The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube. |
फ़ाइल का आकार | 351 KB |
स्थापना संख्या | 776 |
वर्तमान संस्करण | 2.0.1 |
अंतिम अपडेट | 2024-03-03 |
प्रकाशन तिथि | 2019-08-15 |
रेटिंग | 4.25/5 कुल 4 रेटिंग्स |
डेवलपर | https://moocnote.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://moocnote.com/contact |
गोपनीयता नीति पृष्ठ URL | https://moocnote.com/privacy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "MoocNote", "version": "2.0.1", "description": "The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube.", "author": "MoocNote.com", "icons": { "16": "\/static\/images\/icon_16.png", "48": "\/static\/images\/icon_48.png", "128": "\/static\/images\/icon_128.png" }, "action": { "default_icons": { "16": "\/static\/images\/icon_16.png", "24": "\/static\/images\/icon_48.png", "32": "\/static\/images\/icon_16.png" }, "default_title": "MoocNote", "default_popup": "popup\/popup.html" }, "background": { "service_worker": "background\/serviceWorker.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "static\/style\/content\/content.youtube.tailwind.css" ], "js": [ "content\/content.youtube.js" ] }, { "matches": [ "*:\/\/*.moocnote.com\/*", "*:\/\/moocnote\/*", "*:\/\/moocnote.local\/*" ], "css": [ "static\/style\/content\/content.moocnote.tailwind.css" ], "js": [ "content\/content.moocnote.js" ] } ], "permissions": [ "storage", "declarativeNetRequest", "cookies", "tabs" ], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/*", "*:\/\/*.googlevideo.com\/*", "*:\/\/*.moocnote.com\/*", "*:\/\/moocnote\/*", "*:\/\/api.moocnote\/*", "*:\/\/moocnote.local\/*", "*:\/\/api.moocnote.local\/*" ], "web_accessible_resources": [ { "resources": [ "static\/*" ], "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/*", "*:\/\/*.moocnote.com\/*", "*:\/\/moocnote\/*", "*:\/\/moocnote.local\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |