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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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 } ] } |