Salesforce Voice Assistant
Salesforce Voice Assistant
Что такое Salesforce Voice Assistant?
Salesforce Voice Assistant - это расширение Chrome, разработанное Ashish Sharma, и его основная функция - "Salesforce Voice Assistant".
Снимки экрана расширения
Скачать файл CRX расширения Salesforce Voice Assistant
Скачайте файлы расширений 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
Основная информация о расширении
Название | |
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" ] } |