Stereoscopic 3D Viewer
View stereoscopic 3D images on passive 3D monitors.
Stereoscopic 3D Viewer란 무엇입니까?
Stereoscopic 3D Viewer은(는) llyzs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View stereoscopic 3D images on passive 3D monitors."입니다.
확장 프로그램 스크린샷
Stereoscopic 3D Viewer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Convert side-by-side and over-under stereoscopic images to row-interlaced format so they can be viewed directly through passive 3D monitors. Right-click on any image and use context menu to choose one of the supported stereoscopic 3D formats, or move the mouse pointer over any image and use keyboard shortcuts to do the conversion. Keyboard shortcuts can be configured via "chrome://extensions/configureCommands". Limitation: 1. Browser zoom factor must be set in 100%. 2. Some web sites that use dynamic HTML to display images might not work properly.
확장 프로그램 기본 정보
이름 | |
ID | gjihpcejlpnmjimgafnfmfkbglajmdlg |
공식 URL | https://chromewebstore.google.com/detail/stereoscopic-3d-viewer/gjihpcejlpnmjimgafnfmfkbglajmdlg |
설명 | View stereoscopic 3D images on passive 3D monitors. |
파일 크기 | 9.48 KB |
설치 횟수 | 961 |
현재 버전 | 1.3 |
최근 업데이트 | 2022-06-28 |
출시 날짜 | 2020-05-26 |
평점 | 3.50/5 총 6 개의 평점 |
개발자 | llyzs |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Stereoscopic 3D Viewer", "version": "1.3", "description": "View stereoscopic 3D images on passive 3D monitors.", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "commands": { "sbsh": { "suggested_key": { "default": "Alt+1" }, "description": "Toggle Half-SBS" }, "sbshr": { "suggested_key": { "default": "Alt+2" }, "description": "Toggle Half-SBS Reversed" }, "sbsf": { "suggested_key": { "default": "Alt+3" }, "description": "Toggle Full-SBS" }, "sbsfr": { "suggested_key": { "default": "Alt+4" }, "description": "Toggle Full-SBS Reversed" }, "ouh": { "description": "Toggle Half-OU" }, "ouhr": { "description": "Toggle Half-OU Reversed" }, "lrl": { "description": "Toggle Universal LRL" }, "rlr": { "description": "Toggle Universal RLR" }, "orig": { "description": "Toggle Original" } }, "permissions": [ "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "minimum_chrome_version": "88.0.0.0", "icons": { "16": "s3dviewer-16.png", "48": "s3dviewer-48.png", "128": "s3dviewer-128.png" }, "manifest_version": 3 } |