Netflix++
Browser extensions enhancing your Netflix browsing experience
ما هو Netflix++؟
Netflix++ هو إضافة Chrome تم تطويرها بواسطة stevokk، والميزة الرئيسية لها هي "Browser extensions enhancing your Netflix browsing experience".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Netflix++
قم بتنزيل ملفات الامتداد Netflix++ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
NEW! 2017 version, here to enhance your Netflix experience!
Currently shows you ratings from 3 independent sources: IMDB, Rotten Tomatoes & Metacritic
Fully open source, any issues or feature requests go here: https://github.com/stevokk/netflixplusplus معلومات أساسية عن التمديد
| الاسم | |
| ID | ofiindmkglmjpndljggpcpamcglnmmpl |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/netflix++/ofiindmkglmjpndljggpcpamcglnmmpl |
| الوصف | Browser extensions enhancing your Netflix browsing experience |
| حجم الملف | 79.14 KB |
| عدد التثبيتات | 4,279 |
| النسخة الحالية | 1.0.2 |
| آخر تحديث | 2017-08-13 |
| تاريخ النشر | 2017-08-13 |
| تقييم | 4.00/5 مجموع تقييمات 4 |
| المطور | stevokk |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/stevokk/netflixplusplus |
| عنوان صفحة المساعدة | https://github.com/stevokk/netflixplusplus |
| اللغات المدعومة | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Netflix++",
"version": "1.0.2",
"description": "Browser extensions enhancing your Netflix browsing experience",
"homepage_url": "https:\/\/github.com\/stevokk\/netflixplusplus",
"manifest_version": 2,
"minimum_chrome_version": "58",
"applications": {
"gecko": {
"id": "netflixplusplus\/stevokk",
"strict_min_version": "52.0"
}
},
"permissions": [
"storage",
"https:\/\/netflixplusplus.heroku.com\/*",
"http:\/\/localhost\/*"
],
"icons": {
"128": "icon-128.png"
},
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.netflix.com\/*"
],
"css": [
"content.css"
],
"js": [
"content.js"
]
}
]
} | |