Lucky Flix
Adds a Get Lucky button to Netflix.com, which plays a random film
ما هو Lucky Flix؟
Lucky Flix هو إضافة Chrome تم تطويرها بواسطة Tom Pierce، والميزة الرئيسية لها هي "Adds a Get Lucky button to Netflix.com, which plays a random film".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Lucky Flix
قم بتنزيل ملفات الامتداد Lucky Flix بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Eliminate the endless discussions about which film to watch! This extension adds a button to your Netflix which will play a random film from the selection listed on your home page. Remember to rate the films after you've watched them, as this will improve your chances of getting a great random pick next time!
معلومات أساسية عن التمديد
الاسم | Lucky Flix |
ID | ohkaikelnphbioolgljkkeikpdhhijga |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/lucky-flix/ohkaikelnphbioolgljkkeikpdhhijga |
الوصف | Adds a Get Lucky button to Netflix.com, which plays a random film |
حجم الملف | 56.16 KB |
عدد التثبيتات | 47 |
النسخة الحالية | 0.0.2 |
آخر تحديث | 2015-01-27 |
تاريخ النشر | 2015-01-27 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Tom Pierce |
نوع الدفع | free |
موقع الإضافة | https://github.com/tompierce/lucky-flix |
عنوان صفحة المساعدة | https://github.com/tompierce/lucky-flix/issues |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lucky Flix", "version": "0.0.2", "description": "Adds a Get Lucky button to Netflix.com, which plays a random film", "icons": { "32": "icon32.png", "64": "icon64.png", "110": "icon110.png" }, "permissions": [], "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/WiHome" ], "js": [ "contentscript.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "script.js", "jquery-1.11.1.min.js", "jquery.popupoverlay.js" ] } |