DICOM image viewer

This extension allows the user to view DICOM image

DICOM image viewerคืออะไร?

DICOM image viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย grimmer0125 และคุณลักษณะหลักของมันคือ "This extension allows the user to view DICOM image"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DICOM image viewer

ดาวน์โหลดไฟล์ส่วนขยาย DICOM image viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        A Chrome extension to view the images in medical DICOM p10 files. This is not for clinical use and just a reference. 

## Features
1. View online DICOM files by clicking DICOM urls 
2. View offline DICOM by dragging files onto Chrome, or use built-in file browser to select files. 
3. In terminal, use CLI tool, https://www.npmjs.com/package/cli-open-dicom-with-chrome to open DICOM files via this extension. 
4. Shortcut (ctrl+u/cmd+u) to open extension viewer page. Or click extension icon.
5. Support adjustable window center mode. 
6. Support multi-frame, RGB DICOM files
7. Support different plane views mode

After installation, to enable dragging offline files onto Chrome function, please
1. Open the Extension Management page by navigating to "chrome://extensions" (input this in the address bar)
2. Locate DICOM Image Viewer and click on the DETAILS button
3. Turn Allow access to file URLs switch on

##  Not support yet:
1. DICOM video format. 
2. YBR Photometric DICOM
3. Transfer syntax: 1.2.840.10008.1.2.4.90

## Change log
https://github.com/grimmer0125/dicom-web-viewer/wiki#change-log                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DICOM image viewer DICOM image viewer
ID ehppmcooahfnlfhhcflpkcjmonkoindc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dicom-image-viewer/ehppmcooahfnlfhhcflpkcjmonkoindc
คำอธิบาย This extension allows the user to view DICOM image
ขนาดไฟล์ 34.85 MB
จำนวนการติดตั้ง 5,000
เวอร์ชันปัจจุบัน 1.7
อัปเดตครั้งล่าสุด 2021-10-04
วันที่เผยแพร่ 2020-07-03
คะแนน 3.67/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา grimmer0125
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/grimmer0125/dicom-web-viewer/wiki
URL หน้านโยบายความเป็นส่วนตัว https://github.com/lifeoverflow/extensions-privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "DICOM image viewer",
    "start_url": ".",
    "display": "standalone",
    "theme_color": "#000000",
    "background_color": "#ffffff",
    "manifest_version": 2,
    "name": "DICOM image viewer",
    "description": "This extension allows the user to view DICOM image",
    "version": "1.7",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "Dicom_16.png",
        "48": "Dicom_48.png",
        "128": "Dicom_128.png"
    },
    "browser_action": {
        "default_title": "DICOM image viewer (just open url or local file which needs enable local file access!)"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "index.html"
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+U",
                "mac": "Command+U",
                "linux": "Ctrl+U"
            }
        }
    }
}