Zeeromed Multi-monitor
Zeeromed client-side management
Co to jest Zeeromed Multi-monitor?
Zeeromed Multi-monitor to rozszerzenie Chrome opracowane przez O3 Enterprise srl, a jego główną funkcją jest „Zeeromed client-side management”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Zeeromed Multi-monitor
Pobierz pliki rozszerzeń Zeeromed Multi-monitor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Zeeromed extension for multi-monitors and shortcuts management.
It handles opening of images on 1 or 2 medical displays. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jndbgffdnmpofdchjdnmeinejilodggn |
| Oficjalny URL | https://chromewebstore.google.com/detail/zeeromed-multi-monitor/jndbgffdnmpofdchjdnmeinejilodggn |
| Opis | Zeeromed client-side management |
| Rozmiar pliku | 681 KB |
| Liczba instalacji | 667 |
| Aktualna Wersja | 1.4.1 |
| Ostatnia Aktualizacja | 2022-06-07 |
| Data Publikacji | 2019-12-09 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | O3 Enterprise srl |
| [email protected] | |
| Typ Płatności | free |
| Adres URL Strony Polityki Prywatności | https://www.zeeromed.com/privacy-policy |
| Obsługiwane Języki | 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"
}
} | |