Netfix (Netflix Ratings)
Adds TMDB ratings to Netflix interface.
Netfix (Netflix Ratings)란 무엇입니까?
Netfix (Netflix Ratings)은(는) bolaum에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds TMDB ratings to Netflix interface."입니다.
확장 프로그램 스크린샷
Netfix (Netflix Ratings) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A chrome extension to add TMDB ratings to Netflix interface, because why not. This was inspired by a crappy Match system and lots of broken extensions in the store. Code available at https://github.com/bolaum/netfix Report issues here or at https://github.com/bolaum/netfix/issues. Powered by (but not affiliated to) https://www.themoviedb.org/ Donations are most welcome! BTC: 17YfYc5DCKQZBao1Au1HXBuEjtSaxN8xgM ETH: 0x00061d7b58026676BA1582E8e738088995AfCAEC Changelog: v0.5.3 - Add hyperlink to TMDB in ratings stars (awesome PR by wassname (https://github.com/wassname)!) - Fix ratings on expanded cards v0.5.2 - Fix ID scraping - Add more descriptive name and short name v0.5.1 - Fix ID scraping - Prioritize most voted TMDB result when multiple values are returned v0.5 - Initial release
확장 프로그램 기본 정보
이름 | Netfix (Netflix Ratings) |
ID | bdihekkpnckbmgafgoedabbebpafgfci |
공식 URL | https://chromewebstore.google.com/detail/netfix-netflix-ratings/bdihekkpnckbmgafgoedabbebpafgfci |
설명 | Adds TMDB ratings to Netflix interface. |
파일 크기 | 59.81 KB |
설치 횟수 | 1,765 |
현재 버전 | 0.5.3 |
최근 업데이트 | 2018-02-27 |
출시 날짜 | 2018-02-27 |
평점 | 3.92/5 총 24 개의 평점 |
개발자 | bolaum |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/bolaum/netfix |
도움말 페이지 URL | https://github.com/bolaum/netfix/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netfix (Netflix Ratings)", "short_name": "Netfix", "description": "Adds TMDB ratings to Netflix interface.", "version": "0.5.3", "icons": { "16": "res\/icon16.png", "48": "res\/icon48.png", "128": "res\/icon128.png" }, "background": { "scripts": [ "js\/bg.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.netflix.com\/*" ], "css": [ "css\/netfix.css" ], "js": [ "lib\/underscore-min.js", "lib\/rate_limit.js", "lib\/jquery-3.2.1.min.js", "lib\/jquery.visible.min.js", "lib\/jquery-observe.js", "js\/utils.js", "js\/cardfactory.js", "js\/netflixapi.js", "js\/tmdbapi.js", "js\/fixer.js" ] } ], "permissions": [ "*:\/\/api.themoviedb.org\/*" ] } |