Salesforce Voice Assistant

Salesforce Voice Assistant

Vad är Salesforce Voice Assistant?

Salesforce Voice Assistant är en Chrome-tillägg utvecklad av Ashish Sharma, och dess huvudfunktion är "Salesforce Voice Assistant".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Salesforce Voice Assistant-förlängningens CRX-fil

Ladda ner Salesforce Voice Assistant-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        This extension can be used for searching in the global search bar of Salesforce, create account and opportunity using voice recognition. Searching in the setup quick find box can also be done using this extension. Users can set their custom voice commands also.

A lot more functionalities will be introduced in the near future.

Blogs: http://spidysharma.blogspot.co.uk/

Demo Video: https://www.youtube.com/watch?v=0dMb6Hsiecg

Please provide your feedback @
https://in.linkedin.com/in/ashish-sharma-2b145757                    

Grundläggande Information om Tillägg

Namn Salesforce Voice Assistant Salesforce Voice Assistant
ID iogajlmejpnoemacmlfecncgghphbjfl
Officiell webbadress https://chrome.google.com/webstore/detail/salesforce-voice-assistan/iogajlmejpnoemacmlfecncgghphbjfl
Beskrivning Salesforce Voice Assistant
Filstorlek 94.27 KB
Antal Installationer 66
Aktuell Version 3.4
Senast Uppdaterad 2019-03-08
Publiceringsdatum 2019-03-08
Betyg 4.25/5 Totalt 8 Betyg
Utvecklare Ashish Sharma
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://in.linkedin.com/in/ashish-sharma-2b145757
Hjälpsida URL https://in.linkedin.com/in/ashish-sharma-2b145757
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Voice Assistant",
    "version": "3.4",
    "description": "Salesforce Voice Assistant",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/*.salesforce.com\/*"
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "inject.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Salesforce Voice Assistant",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "refresh.mp3",
        "save.mp3"
    ]
}