Show IMDB ratings
Show IMDB ratings
什麼是Show IMDB ratings?
Show IMDB ratings是由Vin開發的Chrome擴展程式,該擴展的主要功能是“Show IMDB ratings”。
擴展截圖
下載Show IMDB ratings擴展crx文件
下載Show IMDB ratings擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Shows ratings next to each movie.
Ratings 7.5 and above are shown in red. 擴展基本資訊
| 名稱 | |
| ID | mjljmcikmfemkogkhbohgcgbfaikoljg |
| 官方網址 | https://chromewebstore.google.com/detail/show-imdb-ratings/mjljmcikmfemkogkhbohgcgbfaikoljg |
| 簡介 | Show IMDB ratings |
| 檔案大小 | 58.37 KB |
| 安裝次數 | 274 |
| 目前版本 | 2.1 |
| 更新時間 | 2022-12-11 |
| 上架時間 | 2020-02-15 |
| 評分 | 3.23/5 共 13 次評分 |
| 開發者 | Vin |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "2.1",
"name": "Show IMDB ratings",
"short_name": "IMDB ratings",
"description": "Show IMDB ratings",
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"action": {
"default_title": "Show IMDB ratings",
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"content_scripts": [
{
"js": [
"jquery.min.js",
"showrate.js"
],
"matches": [
"https:\/\/www.imdb.com\/*"
]
}
],
"host_permissions": [
"https:\/\/www.imdb.com\/"
]
} | |