YouTube Timestamp Bookmarker - Gravitate Webs
Saving timestamps in YouTube videos
YouTube Timestamp Bookmarker - Gravitate Webs란 무엇입니까?
YouTube Timestamp Bookmarker - Gravitate Webs은(는) gravitatewebs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Saving timestamps in YouTube videos"입니다.
확장 프로그램 스크린샷
YouTube Timestamp Bookmarker - Gravitate Webs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Timestamp bookmark a YouTube video at any point during the video by pressing the blue button. This extension will remember what time you saved the bookmark and you can jump to that point at any time you wish. Save as many timestamped bookmakers as you want. This is a great tool when you are presenting a video and when you are needing to jump around to certain points.
확장 프로그램 기본 정보
이름 | YouTube Timestamp Bookmarker - Gravitate Webs |
ID | kbpcmedhleadonchilbecnmmcfeilmml |
공식 URL | https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml |
설명 | Saving timestamps in YouTube videos |
파일 크기 | 138 KB |
설치 횟수 | 31 |
현재 버전 | 0.1.0.0 |
최근 업데이트 | 2022-06-08 |
출시 날짜 | 2022-06-07 |
개발자 | gravitatewebs |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://gravitatewebs.com/ |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamp Bookmarker - Gravitate Webs", "version": "0.1.0.0", "description": "Saving timestamps in YouTube videos", "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "YouTube Timestamp Bookmarker - Gravitate Webs", "default_popup": "popup.html" }, "manifest_version": 3 } |