NETFLIX browse with IMDb rating
Browse NETFLIX with IMDb ratings shown on title cards
NETFLIX browse with IMDb rating란 무엇입니까?
NETFLIX browse with IMDb rating은(는) ktothdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browse NETFLIX with IMDb ratings shown on title cards"입니다.
확장 프로그램 스크린샷
NETFLIX browse with IMDb rating 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension displays IMDb rating of the mouse hovered movies on your Netflix Home/TV-shows/Movies.. page. After you hovered a movie title card with your cursor the rating will appear on the top right corner. Don't waste your time with looking after movie ratings on IMDb webpage any more. How it works: The extension fetch the movie details from the OMDb API by Brian Fritz(https://www.omdbapi.com/) and display the ratings. How to use: 1. Click on the extension's icon in the Chrome menu 2. Get your !!free!! OMDb API key (https://www.omdbapi.com/apikey.aspx) 4. Paste the key you received in email into the input field on popup and DON'T FORGET TO !!CLICK SAVE!! ** Disclaimer ** Netflix and IMDb are registered trademarks, this extension is not affiliated with Netflix nor IMDb.
확장 프로그램 기본 정보
이름 | |
ID | bgioekpgighagonidghmhjlbphlpjioa |
공식 URL | https://chrome.google.com/webstore/detail/bgioekpgighagonidghmhjlbphlpjioa |
설명 | Browse NETFLIX with IMDb ratings shown on title cards |
파일 크기 | 16.79 KB |
설치 횟수 | 35 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2019-07-16 |
출시 날짜 | 2019-07-16 |
개발자 | ktothdev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NETFLIX browse with IMDb rating", "author": "T\u00f3th Kriszti\u00e1n Gyula", "version": "0.0.1", "description": "Browse NETFLIX with IMDb ratings shown on title cards", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "content_scripts": [ { "css": [ "css\/styles.css" ], "js": [ "js\/content.js" ], "matches": [ "https:\/\/www.netflix.com\/browse" ] } ], "permissions": [ "storage", "tabs" ], "browser_action": { "default_popup": "popup.html" } } |