Rotten Netflix
This extension shows Rotten Tomato scores on Netflix.
什么是Rotten Netflix?
Rotten Netflix是由Embel Apps开发的Chrome扩展程序,该扩展的主要功能是“This extension shows Rotten Tomato scores on Netflix.”。
扩展截图
下载Rotten Netflix扩展crx文件
下载Rotten Netflix扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | pcblneldcghfhpoglcojjpboomhldnbc |
| 官方URL | https://chromewebstore.google.com/detail/rotten-netflix/pcblneldcghfhpoglcojjpboomhldnbc |
| 简介 | This extension shows Rotten Tomato scores on Netflix. |
| 文件大小 | 54.42 KB |
| 安装次数 | 73 |
| 当前版本 | 0.0.0.3 |
| 更新时间 | 2018-03-09 |
| 上架时间 | 2018-03-08 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | Embel Apps |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Rotten Netflix",
"description": "This extension shows Rotten Tomato scores on Netflix.",
"version": "0.0.0.3",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"browser_action": {
"default_icon": "icon-32.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.netflix.com\/*"
],
"css": [
"rottennetflix.css"
],
"js": [
"jquery-3.2.1.min.js",
"rottennetflix.js"
]
}
],
"permissions": [
"activeTab",
"*:\/\/*.rottentomatoes.com\/*"
]
} | |