Salesforce Voice Assistant

Salesforce Voice Assistant

什么是Salesforce Voice Assistant?

Salesforce Voice Assistant是由Ashish Sharma开发的Chrome扩展程序,该扩展的主要功能是“Salesforce Voice Assistant”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Salesforce Voice Assistant扩展crx文件

下载Salesforce Voice Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Salesforce Voice Assistant Salesforce Voice Assistant
ID iogajlmejpnoemacmlfecncgghphbjfl
官方URL https://chrome.google.com/webstore/detail/salesforce-voice-assistan/iogajlmejpnoemacmlfecncgghphbjfl
简介 Salesforce Voice Assistant
文件大小 94.27 KB
安装次数 66
当前版本 3.4
更新时间 2019-03-08
上架时间 2019-03-08
评分 4.25/5 共8次评分
开发者 Ashish Sharma
电子邮箱 [email protected]
付费类型 free
扩展官网 https://in.linkedin.com/in/ashish-sharma-2b145757
帮助页面URL https://in.linkedin.com/in/ashish-sharma-2b145757
支持的语言 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"
    ]
}