Media Carousel
Displays all embedded and linked media on the current page in a carousel.
什么是Media Carousel?
Media Carousel是由Blaise Kal开发的Chrome扩展程序,该扩展的主要功能是“Displays all embedded and linked media on the current page in a carousel.”。
扩展截图
下载Media Carousel扩展crx文件
下载Media Carousel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
View a short demo video of Media Carousel: https://streamable.com/89j2y
Hotkey: Ctrl+Shift+M, on Mac: Cmd+Shift+M.
Contains bugs by nature. Please report bugs and feature requests on GitHub at https://github.com/blaise-io/media-carousel/ or send an email to [email protected]. 扩展基本信息
| 名称 | |
| ID | lianhpbcenefikhbnkbdgjfghpgdfffn |
| 官方URL | https://chromewebstore.google.com/detail/media-carousel/lianhpbcenefikhbnkbdgjfghpgdfffn |
| 简介 | Displays all embedded and linked media on the current page in a carousel. |
| 文件大小 | 84.93 KB |
| 安装次数 | 18 |
| 当前版本 | 1.2.2 |
| 更新时间 | 2019-11-18 |
| 上架时间 | 2019-11-18 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Blaise Kal |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/blaise-io/media-carousel#readme |
| 帮助页面URL | https://github.com/blaise-io/media-carousel/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Media Carousel",
"version": "1.2.2",
"description": "Displays all embedded and linked media on the current page in a carousel.",
"homepage_url": "https:\/\/github.com\/blaise-io\/media-carousel#readme",
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"\/background.js"
]
},
"icons": {
"128": "\/icons\/icon.png"
},
"browser_action": {
"default_icon": "\/icons\/icon.png"
},
"web_accessible_resources": [
"\/carousel.html"
],
"options_ui": {
"page": "\/options.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+M",
"windows": "Ctrl+Shift+M",
"linux": "Ctrl+Shift+M",
"mac": "Command+Shift+M"
}
}
}
} | |