The Streaming Wizard
Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.
The Streaming Wizard란 무엇입니까?
The Streaming Wizard은(는) kidusn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu."입니다.
확장 프로그램 스크린샷
The Streaming Wizard 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can also click on the IMDB or Rotten Tomatoes ratings to visit the official IMDB or Rotten Tomatoes web pages in a new tab. With this lightweight extension, you will never again have to browse Netflix or Hulu while simultaneously searching for ratings on the side. The cumbersome days of finding something good to watch and avoiding all the crap are over.
확장 프로그램 기본 정보
이름 | The Streaming Wizard |
ID | kccdfgnjifmimampikofeaobooddbcaj |
공식 URL | https://chromewebstore.google.com/detail/the-streaming-wizard/kccdfgnjifmimampikofeaobooddbcaj |
설명 | Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu. |
파일 크기 | 135 KB |
설치 횟수 | 67 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2019-08-25 |
출시 날짜 | 2019-08-24 |
평점 | 3.20/5 총 5 개의 평점 |
개발자 | kidusn |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "manifest_version": 2, "name": "The Streaming Wizard", "version": "1.0.0", "description": "Adds IMDB, Rotten Tomatoes, and Metacritic ratings, along with Oscar and Golden Globe awards, to titles on Netflix and Hulu.", "icons": { "16": "images\/meta\/icon16.png", "32": "images\/meta\/icon32.png", "48": "images\/meta\/icon48.png", "128": "images\/meta\/icon128.png" }, "background": { "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "css": [ "styles\/style.css" ], "js": [ "src\/jquery-3.4.1.min.js", "src\/getRatings.js", "src\/addRatings.js", "src\/contentscriptnetflix.js" ], "matches": [ "https:\/\/*.netflix.com\/*" ] }, { "css": [ "styles\/style.css" ], "js": [ "src\/jquery-3.4.1.min.js", "src\/getRatings.js", "src\/addRatings.js", "src\/contentscripthulu.js" ], "matches": [ "https:\/\/*.hulu.com\/*" ] } ], "page_action": { "default_icon": { "16": "images\/meta\/icon16.png", "32": "images\/meta\/icon32.png", "48": "images\/meta\/icon48.png", "128": "images\/meta\/icon128.png" }, "default_title": "The Streaming Wizard" }, "permissions": [ "https:\/\/*.netflix.com\/*", "https:\/\/*.hulu.com\/*", "https:\/\/ajax.googleapis.com\/", "tabs" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "web_accessible_resources": [ "images\/imdb.png", "images\/rtRotten.png", "images\/rtFresh.png", "images\/rtCertifiedFresh.png", "images\/metacritic.png", "images\/oscar.png", "images\/goldenglobe.png" ] } |