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文件
下載The Streaming Wizard擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } |