Netflix++
Browser extensions enhancing your Netflix browsing experience
什麼是Netflix++?
Netflix++是由stevokk開發的Chrome擴展程式,該擴展的主要功能是“Browser extensions enhancing your Netflix browsing experience”。
擴展截圖
下載Netflix++擴展crx文件
下載Netflix++擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
| 官方網址 | 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 |
| 說明頁面URL | 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"
]
}
]
} | |