NetRating - IMDB Ratings for Netflix
Add IMDB ratings to your Netflix.
什麼是NetRating - IMDB Ratings for Netflix?
NetRating - IMDB Ratings for Netflix是由Philipp Bergmann開發的Chrome擴展程式,該擴展的主要功能是“Add IMDB ratings to your Netflix.”。
擴展截圖
下載NetRating - IMDB Ratings for Netflix擴展crx文件
下載NetRating - IMDB Ratings for Netflix擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This Chrome Extension will display the newest IMDB Rating seamlessly integrated into your Netflix website. You also can click the IMDB logo an a new tab with the imdb-page will open. Works best with english language settings, but will work for most languages. The Extension can only access netflix.com and is kept minimal. We are using http://www.omdbapi.com/ to gather the information we need.
擴展基本資訊
名稱 | |
ID | onhgpfjfofbdiiddhklbhkajangcligj |
官方網址 | https://chrome.google.com/webstore/detail/netrating-imdb-ratings-fo/onhgpfjfofbdiiddhklbhkajangcligj |
簡介 | Add IMDB ratings to your Netflix. |
檔案大小 | 150 KB |
安裝次數 | 29 |
目前版本 | 0.0.1 |
更新時間 | 2017-10-09 |
上架時間 | 2017-10-09 |
評分 | 1.00/5 共 1 次評分 |
開發者 | Philipp Bergmann |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "assets\/js\/jquery-1.7.1.min.js", "assets\/js\/netrating.js" ], "css": [ "assets\/css\/netflix.css" ] } ], "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html", "default_title": "NetRating" }, "content_security_policy": "script-src 'self'; object-src 'self'", "description": "Add IMDB ratings to your Netflix.", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "manifest_version": 2, "minimum_chrome_version": "25", "name": "NetRating - IMDB Ratings for Netflix", "offline_enabled": false, "web_accessible_resources": [ "imdb_logo.png" ], "permissions": [ "activeTab", "cookies", "webRequest", "webRequestBlocking", "*:\/\/*.omdbapi.com\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.1" } |