Useful scores for Netflix
Shows IMDd, Metacritic, Rotten Tomatoes and TMDb on Netflix
Useful scores for Netflix란 무엇입니까?
Useful scores for Netflix은(는) Max Meijer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows IMDd, Metacritic, Rotten Tomatoes and TMDb on Netflix"입니다.
확장 프로그램 스크린샷
Useful scores for Netflix 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extensions shows IMDB, Metacritic, Rotten Tomatoes and The movie DB scores on Netflix providing more useful information then the percentages shown on Netflix itself. Now also available on Android: https://play.google.com/store/apps/details?id=com.m_meijer.netflixscores If you have a slow internet connection the plugin will not slow down your netflix browsing at all. Note that it works best on the English version of Netflix. If there are any issues shoot me a message, development will continue overtime to increase stability and performance. v2.2 - Use new more stable API - Improved stability - Fixed minor bugs v2.1 - Improved stability - Add The Movie DB ratings v1.9 - Fix bug due to Netflix update. v1.8 - Fix bug where new data would show in old tile. - Fix bug related to fetching data. - Removed unused permissions. - Minor other bug fixes. v1.7 - Fixed search not working - Fixed missing icons bug v1.6 - Added icons v1.5 - Bug fixes v1.4 - Fix bug where scrolling would prevent data from loading - Fix bug where sideways scrolling would prevent data from loading - Stability improvements v1.3 - Add support for OMDb - Add support for Rotten Tomatoes - Improved Metacritic support - Stabilty improvements - Performance improvements v1.2 - Minor bug fixes v1.1 - Fix naming issue
확장 프로그램 기본 정보
이름 | |
ID | dipejjoekmjlcjhkjfombogonlcibibp |
공식 URL | https://chrome.google.com/webstore/detail/useful-scores-for-netflix/dipejjoekmjlcjhkjfombogonlcibibp |
설명 | Shows IMDd, Metacritic, Rotten Tomatoes and TMDb on Netflix |
파일 크기 | 45.63 KB |
설치 횟수 | 413 |
현재 버전 | 2.3 |
최근 업데이트 | 2019-05-15 |
출시 날짜 | 2019-05-09 |
평점 | 4.00/5 총 9 개의 평점 |
개발자 | Max Meijer |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Useful scores for Netflix", "description": "Shows IMDd, Metacritic, Rotten Tomatoes and TMDb on Netflix", "version": "2.3", "icons": { "128": "img\/NetCriticLogo.png" }, "permissions": [ "activeTab", "https:\/\/www.netflix.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "thirdParty\/jquery-3.3.1.min.js", "script.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "thirdParty\/jquery-3.3.1.min.js", "infoGetter.js" ] }, "web_accessible_resources": [ "script.js" ] } |