IMDb Runtime
Convert IMDb movie/tv runtimes to hours and minutes.
什么是IMDb Runtime?
IMDb Runtime是由Terkel Gjervig开发的Chrome扩展程序,该扩展的主要功能是“Convert IMDb movie/tv runtimes to hours and minutes.”。
扩展截图
下载IMDb Runtime扩展crx文件
下载IMDb Runtime扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically convert runtimes on IMDb to hours and minutes for easier reading. 扩展基本信息
| 名称 | |
| ID | gclighdbiijnjlnjljgnamaibjkemffj |
| 官方URL | https://chromewebstore.google.com/detail/imdb-runtime/gclighdbiijnjlnjljgnamaibjkemffj |
| 简介 | Convert IMDb movie/tv runtimes to hours and minutes. |
| 文件大小 | 8.62 KB |
| 安装次数 | 55 |
| 当前版本 | 0.0.3 |
| 更新时间 | 2015-01-03 |
| 上架时间 | 2015-01-02 |
| 评分 | 4.00/5 共2次评分 |
| 开发者 | Terkel Gjervig |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "0.0.3",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/imdb.com\/*",
"http:\/\/www.imdb.com\/*",
"https:\/\/imdb.com\/*",
"https:\/\/www.imdb.com\/*"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
]
} | |