DICOM viewer extension
Extension for arranging web browser windows and tabs for smoother user experience in DICOM viewer application.
什麼是DICOM viewer extension?
DICOM viewer extension是由Bigroot Software a.s.開發的Chrome擴展程式,該擴展的主要功能是“Extension for arranging web browser windows and tabs for smoother user experience in DICOM viewer application.”。
擴展截圖
下載DICOM viewer extension擴展crx文件
下載DICOM viewer extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
What this extension do and why do I need it? This extension is used to do some window operation that are not allowed to do by default means of Javascript. The extension does not collect any of your data. The only function is to inject scripts to: move web browser window on specific position (e.g. other display) make web browser window fullscreen or close it without user mouse interaction find out amount of memory available (due to optimalization of large data loading) use native messaging for DICOM printer component (component is installed separately) The extension is meant to be used only with our products. Active Directory managers should install this extension using GPO on site using our software. Privacy This extension does NOT collect any of your data! All functions are listed above. Eventhough extension asks for permission to all tabs, our script is injected only to those websites containing attribute dw-ext="true" in HTML tag. Source code of this extension is not obfuscated and can be viewed and audited by anybody.
擴展基本資訊
名稱 | DICOM viewer extension |
ID | ljijfflodcoklbdnhbjhladgnbnjcena |
官方網址 | https://chromewebstore.google.com/detail/dicom-viewer-extension/ljijfflodcoklbdnhbjhladgnbnjcena |
簡介 | Extension for arranging web browser windows and tabs for smoother user experience in DICOM viewer application. |
檔案大小 | 17.63 KB |
安裝次數 | 52,327 |
目前版本 | 1.2.0 |
更新時間 | 2023-05-04 |
上架時間 | 2021-08-09 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Bigroot Software a.s. |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DICOM viewer extension", "description": "Extension for arranging web browser windows and tabs for smoother user experience in DICOM viewer application.", "author": "Bigroot Software a.s.", "version": "1.2.0", "manifest_version": 3, "icons": { "128": "\/icon_128.png", "48": "\/icon_48.png", "32": "\/icon_32.png", "16": "\/icon_16.png" }, "action": { "default_popup": "popup.html", "default_icon": { "128": "\/icon_128.png", "48": "\/icon_48.png", "32": "\/icon_32.png", "16": "\/icon_16.png" } }, "background": { "service_worker": "\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "\/contentscript.js" ], "all_frames": true, "run_at": "document_end" } ], "permissions": [ "tabs", "activeTab", "scripting", "system.memory", "nativeMessaging" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": { "extension_pages": "default-src 'self'" } } |