Salesforce Voice Assistant

Salesforce Voice Assistant

Salesforce Voice Assistant là gì?

Salesforce Voice Assistant là một tiện ích mở rộng Chrome được phát triển bởi Ashish Sharma, và tính năng chính của nó là "Salesforce Voice Assistant".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Voice Assistant

Tải xuống các tệp mở rộng Salesforce Voice Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Voice Assistant Salesforce Voice Assistant
ID iogajlmejpnoemacmlfecncgghphbjfl
URL Chính Thức https://chrome.google.com/webstore/detail/salesforce-voice-assistan/iogajlmejpnoemacmlfecncgghphbjfl
Mô tả Salesforce Voice Assistant
Kích Thước Tệp 94.27 KB
Số Lần Cài Đặt 66
Phiên Bản Hiện Tại 3.4
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.25/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Ashish Sharma
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://in.linkedin.com/in/ashish-sharma-2b145757
URL Trang Trợ Giúp https://in.linkedin.com/in/ashish-sharma-2b145757
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}