Randflix - Random Episodes For Netflix
Adds a shuffle button to play a random episode of a given show.
Randflix - Random Episodes For Netflix là gì?
Randflix - Random Episodes For Netflix là một tiện ích mở rộng Chrome được phát triển bởi Susan Chen, và tính năng chính của nó là "Adds a shuffle button to play a random episode of a given show.".
Ả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 Randflix - Random Episodes For Netflix
Tải xuống các tệp mở rộng Randflix - Random Episodes For Netflix 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
A handy chrome extension for those who have seen their favourite shows on Netflix way too many times. Randflix allows you to randomize episode playback of a given TV show. When choosing an episode becomes arduous, just turn to Randflix to make the choice for you! https://github.com/bzvikler/netflix-randomizer
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Randflix - Random Episodes For Netflix |
ID | enjakkkpkgpcnjbmagjgkccljfimgbhh |
URL Chính Thức | https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh |
Mô tả | Adds a shuffle button to play a random episode of a given show. |
Kích Thước Tệp | 48.98 KB |
Số Lần Cài Đặt | 179 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2020-03-27 |
Ngày Phát Hành | 2020-03-27 |
Đánh Giá | 3.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Susan Chen |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/bzvikler/netflix-randomizer |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Randflix - Random Episodes For Netflix", "version": "1.2", "description": "Adds a shuffle button to play a random episode of a given show.", "permissions": [], "page_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.netflix.com\/*" ], "css": [ "styles.css" ], "js": [ "contentScript.js" ], "all_frames": true } ] } |