YouTube++
This extension shows the publishing or uploading date of related youtube videos in sidebar.
YouTube++ là gì?
YouTube++ là một tiện ích mở rộng Chrome được phát triển bởi divyum, và tính năng chính của nó là "This extension shows the publishing or uploading date of related youtube videos in sidebar.".
Ả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++
Tải xuống các tệp mở rộng YouTube++ 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
Ever wondered if you could get the published date of related videos without even opening the videos in youtube, here is an extension which will solve this for you.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube++ |
ID | mbaflkdlneldejanggphlhcepncjfaco |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube++/mbaflkdlneldejanggphlhcepncjfaco |
Mô tả | This extension shows the publishing or uploading date of related youtube videos in sidebar. |
Kích Thước Tệp | 229 KB |
Số Lần Cài Đặt | 2,716 |
Phiên Bản Hiện Tại | 2.3.2 |
Cập Nhật Lần Cuối | 2019-11-12 |
Ngày Phát Hành | 2019-11-11 |
Đánh Giá | 3.77/5 Tổng số 52 Đánh Giá |
Nhà Phát Triển | divyum |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube++", "short_name": "YTD", "description": "This extension shows the publishing or uploading date of related youtube videos in sidebar.", "version": "2.3.2", "icons": { "48": "image\/icon48.png", "128": "image\/icon128.png" }, "permissions": [ "tabs" ], "background": { "persistent": true, "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ "js\/main.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "image\/loader_gif.gif" ] } |