Youtube Bookmarker
Saving timestamps in youtube videos
Youtube Bookmarker là gì?
Youtube Bookmarker là một tiện ích mở rộng Chrome được phát triển bởi Adham Niazy, và tính năng chính của nó là "Saving timestamps in youtube videos".
Ả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
This extension will help you bookmarking any second on any YouTube video by just clicking on the plus button that will appear on any YouTube video player.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Bookmarker |
ID | ajfngclcoacjmcadbcchfmhiiafegabp |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-bookmarker/ajfngclcoacjmcadbcchfmhiiafegabp |
Mô tả | Saving timestamps in youtube videos |
Kích Thước Tệp | 260 KB |
Số Lần Cài Đặt | 127 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2022-07-06 |
Ngày Phát Hành | 2022-07-05 |
Đánh Giá | 4.60/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | Adham Niazy |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Bookmarker", "version": "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 Bookmarker", "default_popup": "popup.html" }, "manifest_version": 3 } |