Smart Youtuber
'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…
Smart Youtuber là gì?
Smart Youtuber là một tiện ích mở rộng Chrome được phát triển bởi Mr Foo, và tính năng chính của nó là "'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…".
Ả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 Smart Youtuber
Tải xuống các tệp mở rộng Smart Youtuber 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
'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by automatically pausing/playing videos in other tabs based on your current tab activity. The following two-step scenario sums up the application behavior -- Step-1: You are playing some video in tab-1. You now open a new tab-2 and play another video. The application will automatically pause the video in tab-1. Step-2: Next, if you pause the tab-2 video, the application will automatically resume the tab-1 video. This can extend to any number of tabs or windows. NOTE: This works only on www.YouTube.com at present. Videos in embedded mode are not supported.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | inmdnokekflmjbdljfljibopigogoeac |
URL Chính Thức | https://chrome.google.com/webstore/detail/smart-youtuber/inmdnokekflmjbdljfljibopigogoeac |
Mô tả | 'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by… |
Kích Thước Tệp | 58.92 KB |
Số Lần Cài Đặt | 73 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2016-06-07 |
Ngày Phát Hành | 2016-06-07 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Mr Foo |
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": "Smart Youtuber", "version": "0.1", "permissions": [ "contentSettings", "tabs" ], "browser_action": { "default_icon": "Smart_Youtuber.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery-2.2.4.min.js", "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] } } |