YouTube Bookmarker
Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc
YouTube Bookmarker란 무엇입니까?
YouTube Bookmarker은(는) bharat7gupta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc"입니다.
확장 프로그램 스크린샷
YouTube Bookmarker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add bookmarks to YouTube videos and get easier access to the bookmarks on subsequent access to those videos. User of this extension can edit/add a meaningful description to each bookmark to make the bookmarks legible and get quicker overview of different important points in a YouTube video. User can also start playback of video from a bookmark, copy and share link of a bookmark to enable playback from that point of the video and also delete bookmarks if its not needed anymore. All of this from a single extension popup.
확장 프로그램 기본 정보
이름 | YouTube Bookmarker |
ID | fnpjllldbpafaicnbgakpokibefgdeim |
공식 URL | https://chromewebstore.google.com/detail/youtube-bookmarker/fnpjllldbpafaicnbgakpokibefgdeim |
설명 | Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc |
파일 크기 | 45.47 KB |
설치 횟수 | 641 |
현재 버전 | 1.1 |
최근 업데이트 | 2020-03-25 |
출시 날짜 | 2020-03-25 |
평점 | 4.00/5 총 4 개의 평점 |
개발자 | bharat7gupta |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Bookmarker", "version": "1.1", "description": "Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc", "permissions": [ "storage", "tabs", "https:\/\/*.youtube.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ "styles.css" ], "js": [ "contentScript.js", "common.js" ] } ], "web_accessible_resources": [ "icons\/bookmark.png", "icons\/edit.png", "icons\/play.png", "icons\/copy-link.png", "icons\/delete.png", "icons\/save.png" ], "browser_action": { "default_icon": { "16": "icons\/youtube-bookmarker-32.png", "24": "icons\/youtube-bookmarker-32.png", "32": "icons\/youtube-bookmarker-32.png" }, "default_title": "YouTube Bookmarker", "default_popup": "popup.html" }, "manifest_version": 2 } |