Snippit
A YouTube transcript highlighter
Snippit란 무엇입니까?
Snippit은(는) https://snippit.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A YouTube transcript highlighter"입니다.
확장 프로그램 스크린샷
Snippit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Watching videos just got productive. Make notes & transcript snippets on YouTube videos without tediously writing them out! Save the best parts, organize them and export them to your notes app. Record them, annotate them, and review them. Enhance your YouTube experience and make the time you spend there more valuable and productive. Learn more and engage more with the content through taking snippets, making notes and saving sections to your personal note taking system. Integration with Readwise is available (as well as Roam Research, Notion and Evernote via Readwise.) Build your second brain, while relaxing on YouTube. A seamless connection between YouTube and your notes app. Watch any YouTube video and extract the key insights with one click. A must for anyone who wants to build a second brain. Minimal privacy requirements, to help provide peace of mind when installing yet another extension Annotate those YouTube videos with notes, flashcards, and more. Collect material for your next creation, or simply learn and engage more with your content. "It's like highlighting text, but better."
확장 프로그램 기본 정보
이름 | |
ID | alnjkmbmogcjljncjoencmadbiboedfp |
공식 URL | https://chromewebstore.google.com/detail/snippit/alnjkmbmogcjljncjoencmadbiboedfp |
설명 | A YouTube transcript highlighter |
파일 크기 | 1.13 MB |
설치 횟수 | 963 |
현재 버전 | 1.6 |
최근 업데이트 | 2021-07-22 |
출시 날짜 | 2020-12-12 |
평점 | 1.67/5 총 3 개의 평점 |
개발자 | https://snippit.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.snippit.io |
도움말 페이지 URL | https://app.snippit.io/register |
개인정보 보호 정책 페이지 URL | https://www.snippit.io/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A YouTube transcript highlighter", "version": "1.6", "content_scripts": [ { "matches": [ "http:\/\/youtube.com\/*", "https:\/\/youtube.com\/*", "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "run_at": "document_idle", "js": [ "content-script.bundle.js" ] } ], "permissions": [ "storage", "https:\/\/www.youtube.com\/*" ], "icons": { "128": "icon-128.png" }, "name": "Snippit", "options_page": "options.html", "web_accessible_resources": [ "quote.png", "quote.svg", "logo_bg_light.png" ], "browser_action": { "default_popup": "popup.html" }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |