MoocNote
The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube.
MoocNote란 무엇입니까?
MoocNote은(는) https://moocnote.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The new version of MoocNote allows users to take synchronized notes with screenshots directly on YouTube."입니다.
확장 프로그램 스크린샷
MoocNote 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'" } } |