Netflix Rottenizer
Overlays Rotten Tomato reviews when browsing Netflix.
什麼是Netflix Rottenizer?
Netflix Rottenizer是由orrybaram開發的Chrome擴展程式,該擴展的主要功能是“Overlays Rotten Tomato reviews when browsing Netflix.”。
擴展截圖
下載Netflix Rottenizer擴展crx文件
下載Netflix Rottenizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Takes critic and audience ratings from Rotten Tomatoes and overlays them over Netflix movies. The extension also adds a button that lets you hide rotten movies. Based on Nicolae Rusan's Rotten Netflix.
擴展基本資訊
名稱 | |
ID | ncoenoilpelnnkgbpcgcdkmibhhkljjc |
官方網址 | https://chrome.google.com/webstore/detail/netflix-rottenizer/ncoenoilpelnnkgbpcgcdkmibhhkljjc |
簡介 | Overlays Rotten Tomato reviews when browsing Netflix. |
檔案大小 | 1.02 MB |
安裝次數 | 1,000 |
目前版本 | 0.7.6 |
更新時間 | 2015-07-07 |
上架時間 | 2015-07-07 |
評分 | 2.96/5 共 24 次評分 |
開發者 | orrybaram |
付費類型 | free |
擴展官網 | https://github.com/orrybaram/RottenNetflix/ |
說明頁面URL | https://github.com/orrybaram/RottenNetflix/issues |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Rottenizer", "version": "0.7.6", "manifest_version": 2, "description": "Overlays Rotten Tomato reviews when browsing Netflix.", "permissions": [ "http:\/\/api.rottentomatoes.com\/", "http:\/\/www.rottentomatoes.com\/", "http:\/\/netflixrottenizer.appspot.com\/", "storage", "tabs" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": { "19": "icon16.png", "38": "icon48.png" }, "default_title": "Netflix Rottenizer", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*.netflix.com\/*" ], "js": [ "jquery-1.7.1.min.js", "hoverIntent-1.8.js", "lodash.js", "netflix_rottenizer.js" ], "css": [ "netflix_rottenizer.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |