YouTube Bookmarker
Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc
YouTube Bookmarker là gì?
YouTube Bookmarker là một tiện ích mở rộng Chrome được phát triển bởi bharat7gupta, và tính năng chính của nó là "Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Bookmarker
Tải xuống các tệp mở rộng YouTube Bookmarker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Bookmarker |
ID | fnpjllldbpafaicnbgakpokibefgdeim |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-bookmarker/fnpjllldbpafaicnbgakpokibefgdeim |
Mô tả | Bookmark important points in a YouTube video. Edit Bookmark title. Share bookmark link. Start play from bookmark etc |
Kích Thước Tệp | 45.47 KB |
Số Lần Cài Đặt | 641 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2020-03-25 |
Ngày Phát Hành | 2020-03-25 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | bharat7gupta |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |