Netflex
Work out while you watch your favorite shows.
ما هو Netflex؟
Netflex هو إضافة Chrome تم تطويرها بواسطة Netflex، والميزة الرئيسية لها هي "Work out while you watch your favorite shows.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Netflex
قم بتنزيل ملفات الامتداد Netflex بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Feeling guilty about watching too much TV and getting too little exercise? Netflex gives you the best of both worlds. With this free extension, you can watch any Netflix show while we coach you through simple bodyweight exercises in the corner of your screen. We know, it’s genius. You’re welcome.
معلومات أساسية عن التمديد
الاسم | |
ID | hfanmigfcphpeagamjjombcbpgafhpkf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/netflex/hfanmigfcphpeagamjjombcbpgafhpkf |
الوصف | Work out while you watch your favorite shows. |
حجم الملف | 871 KB |
عدد التثبيتات | 379 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2021-01-12 |
تاريخ النشر | 2020-09-23 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Netflex |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://netflexandsweat.com/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflex", "version": "1.0.0", "manifest_version": 2, "description": "Work out while you watch your favorite shows.", "permissions": [ "*:\/\/*.netflix.com\/*", "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/netflex_icon16.png", "32": "icons\/netflex_icon32.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "css": [ "css\/index.css" ], "js": [ "js\/index.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "js\/netflix.js" ], "icons": { "16": "icons\/netflex_icon16.png", "32": "icons\/netflex_icon32.png", "48": "icons\/netflex_icon48.png", "128": "icons\/netflex_icon128.png" } } |