Zeeromed Multi-monitor
Zeeromed client-side management
Zeeromed Multi-monitorとは何ですか?
Zeeromed Multi-monitorはO3 Enterprise srlによって開発されたChromeの拡張機能で、その主な機能は「Zeeromed client-side management」です。
拡張機能のスクリーンショット
Zeeromed Multi-monitor拡張機能のCRXファイルをダウンロード
Zeeromed Multi-monitor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Zeeromed extension for multi-monitors and shortcuts management.
It handles opening of images on 1 or 2 medical displays. 拡張機能の基本情報
| 名前 | |
| ID | jndbgffdnmpofdchjdnmeinejilodggn |
| 公式URL | https://chromewebstore.google.com/detail/zeeromed-multi-monitor/jndbgffdnmpofdchjdnmeinejilodggn |
| 説明 | Zeeromed client-side management |
| ファイルサイズ | 681 KB |
| インストール数 | 667 |
| 現在のバージョン | 1.4.1 |
| 最終更新日 | 2022-06-07 |
| 公開日 | 2019-12-09 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | O3 Enterprise srl |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | https://www.zeeromed.com/privacy-policy |
| 対応言語 | en |
| manifest.json | |
{
"name": "Zeeromed Multi-monitor",
"short_name": "Zeeromed",
"description": "Zeeromed client-side management",
"version": "1.4.1",
"manifest_version": 2,
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"permissions": [
"system.display",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"jquery.min.js",
"background_main.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "browser_action.html"
},
"commands": {
"R1": {
"suggested_key": {
"default": "Alt+1"
},
"description": "r1"
},
"R2": {
"suggested_key": {
"default": "Alt+2"
},
"description": "r2"
},
"M": {
"suggested_key": {
"default": "Alt+M"
},
"description": "Monitors setup"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js",
"jquery.min.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"icons": {
"128": "img\/icon.png"
}
} | |