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 |
| Eメール | [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"
}
}
}
} | |