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 |
| 官方網址 | 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\/*"
]
} | |