Randflix - Random Episodes For Netflix
Adds a shuffle button to play a random episode of a given show.
Randflix - Random Episodes For Netflixคืออะไร?
Randflix - Random Episodes For Netflix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Susan Chen และคุณลักษณะหลักของมันคือ "Adds a shuffle button to play a random episode of a given show."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Randflix - Random Episodes For Netflix
ดาวน์โหลดไฟล์ส่วนขยาย Randflix - Random Episodes For Netflix ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Randflix - Random Episodes For Netflix |
ID | enjakkkpkgpcnjbmagjgkccljfimgbhh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh |
คำอธิบาย | Adds a shuffle button to play a random episode of a given show. |
ขนาดไฟล์ | 48.98 KB |
จำนวนการติดตั้ง | 179 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2020-03-27 |
วันที่เผยแพร่ | 2020-03-27 |
คะแนน | 3.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Susan Chen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/bzvikler/netflix-randomizer |
ภาษาที่รองรับ | 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 } ] } |