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."입니다.

확장 프로그램 스크린샷

screenshot

DICOM viewer extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 DICOM viewer extension
ID ljijfflodcoklbdnhbjhladgnbnjcena
공식 URL 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'"
    }
}