Stereoscopic 3D Viewer

View stereoscopic 3D images on passive 3D monitors.

Stereoscopic 3D Viewer क्या है?

Stereoscopic 3D Viewer llyzs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View stereoscopic 3D images on passive 3D monitors."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stereoscopic 3D Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.                    

एक्सटेंशन की मूल जानकारी

नाम Stereoscopic 3D Viewer Stereoscopic 3D Viewer
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
}