Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
Youtube Repeat là gì?
Youtube Repeat là một tiện ích mở rộng Chrome được phát triển bởi mercury200Hg, và tính năng chính của nó là "Save your preference once and it will repeat the video for your favourite songs".
Ả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 Repeat
Tải xuống các tệp mở rộng Youtube Repeat 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
Single repeat choice for all YouTube links. - Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage. Icons used are made by Freepick from www.flaticons.com
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
Mô tả | Save your preference once and it will repeat the video for your favourite songs |
Kích Thước Tệp | 8.63 KB |
Số Lần Cài Đặt | 361 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2017-03-12 |
Ngày Phát Hành | 2017-03-12 |
Đánh Giá | 4.33/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | mercury200Hg |
[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", "manifest_version": 2, "name": "Youtube Repeat", "browser_action": { "default_icon": "loop-arrow-32.png", "default_popup": "popup.html", "default_title": "Click repeat" }, "description": "Save your preference once and it will repeat the video for your favourite songs", "icons": { "128": "loop-arrow-128.png", "32": "loop-arrow-32.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "tabs", "webNavigation", "*:\/\/*.youtube.com\/*", "storage" ], "version": "1.0.0" } |