Voice DIM

Control DIM with your voice.

Voice DIM क्या है?

Voice DIM https://voicedim.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control DIM with your voice."।

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

screenshot
screenshot

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

crx प्रारूप में Voice DIM एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Ever needed to transfer a weapon in the middle of an encounter, but you didn't have time to Alt-Tab to DIM and find it yourself? Here comes Voice DIM to the rescue. Using a global shortcut (defaulted to Ctrl+Shift+0) or the new Always listening mode (using an activation phrase defaulted to "okay ghost"), Voice DIM will now listen for your command and execute it within seconds, even while in the middle of a heated Crucible match or raid encounter.

Here are the voice commands available:
• Transfer/Equip : Transfer any weapon by name
• Transfer/Equip  + : Transfer a weapon by its type and energy
• Transfer/Equip  with : Transfer a weapon with a particular perk (works with multiple perks)
• Store : Store a weapon in the vault
• Loadout : Equip a loadout by name
• Start Farming Mode: Prevent items from going to the postmaster
• Stop Farming Mode: End farming mode
• Max Power: Equip the current character's max power items
• Collect postmaster: Collect all items from the current character's postmaster

These commands are now fully configurable! Head to the options page of Voice DIM to setup your own custom voice commands.

Current issues:
• Loadouts with numerics don't match well when requesting them (ex. Loadout 1)
• The auto rifle Krait doesn't match well because speech recognition gets "crate" and matches Fractethyst quite often. Mitigate by using "transfer K R A I T"

Visit voicedim.com for more information.                    

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

नाम Voice DIM Voice DIM
ID ldfeegohcppbkbmiefdcjcbdmjikpead
आधिकारिक URL https://chromewebstore.google.com/detail/voice-dim/ldfeegohcppbkbmiefdcjcbdmjikpead
विवरण Control DIM with your voice.
फ़ाइल का आकार 89.35 KB
स्थापना संख्या 1,354
वर्तमान संस्करण 1.2.7
अंतिम अपडेट 2023-08-24
प्रकाशन तिथि 2022-08-19
रेटिंग 5.00/5 कुल 12 रेटिंग्स
डेवलपर https://voicedim.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.github.com/mlsof21/dim-voice
सहायता पृष्ठ URL https://www.github.com/mlsof21/dim-voice/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Voice DIM",
    "description": "Control DIM with your voice.",
    "version": "1.2.7",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.destinyitemmanager.com\/*"
            ],
            "js": [
                "js\/voiceDim.js"
            ],
            "css": [
                "css\/voiceDim.css"
            ]
        }
    ],
    "commands": {
        "dim-listen": {
            "suggested_key": {
                "default": "Ctrl+Shift+0"
            },
            "description": "Start\/Stop listening for DIM commands",
            "global": true
        }
    },
    "action": {
        "default_icon": "icons\/icon_128.png",
        "default_title": "Voice DIM"
    },
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true
    },
    "host_permissions": [
        "https:\/\/www.bungie.net\/*"
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon_large.png"
            ],
            "matches": [
                "https:\/\/*.destinyitemmanager.com\/*"
            ]
        }
    ]
}