Netflix Shortcuts
Custom shortcuts for Netflix
ما هو Netflix Shortcuts؟
Netflix Shortcuts هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Custom shortcuts for Netflix".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Netflix Shortcuts
قم بتنزيل ملفات الامتداد Netflix Shortcuts بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to control Netflix using only your keyboard, no more mouse needed. It currently supports: - "Skip Intro" (hit the "s" key) - "Next Episode" (hit the "n" key). More coming soon...
معلومات أساسية عن التمديد
الاسم | |
ID | pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
الوصف | Custom shortcuts for Netflix |
حجم الملف | 6.79 KB |
عدد التثبيتات | 246 |
النسخة الحالية | 1.0 |
آخر تحديث | 2018-10-06 |
تاريخ النشر | 2018-10-06 |
تقييم | 1.00/5 مجموع تقييمات 1 |
المطور | Unknown |
نوع الدفع | free |
موقع الإضافة | https://github.com/foxou33/netflix-shortcuts |
عنوان صفحة المساعدة | https://github.com/foxou33/netflix-shortcuts/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Shortcuts", "version": "1.0", "manifest_version": 2, "description": "Custom shortcuts for Netflix", "icons": { "64": "img\/icon_grey.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/watch\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_icon": "img\/icon_red.png" }, "permissions": [ "declarativeContent" ] } |