Salesforce Background Control
Case background control
Salesforce Background Control là gì?
Salesforce Background Control là một tiện ích mở rộng Chrome được phát triển bởi https://joshbirk.herokuapp.com, và tính năng chính của nó là "Case background control".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Salesforce Background Control
Tải xuống các tệp mở rộng Salesforce Background Control 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 Chrome Extension is meant to work with the Echo Case Control project: https://github.com/joshbirk/EchoCaseControl It allows for Chrome to follow along with getting latest cases and updating them using the Amazon Echo. To operate, you need a running version of the Alexa Skill and the unmanaged package on your Salesforce instance.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Salesforce Background Control |
ID | jgehjigfmmdedecnalcjpkjbhlfcichb |
URL Chính Thức | https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb |
Mô tả | Case background control |
Kích Thước Tệp | 18.46 KB |
Số Lần Cài Đặt | 21 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2016-05-31 |
Ngày Phát Hành | 2016-05-31 |
Nhà Phát Triển | https://joshbirk.herokuapp.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/joshbirk/EchoCaseControl |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Background Control", "description": "Case background control", "version": "1.0.1", "icons": { "128": "alexa.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "*:\/\/*.salesforce.com\/", "*:\/\/*.force.com\/", "webRequest", "*:\/\/*.salesforce.com\/", "*:\/\/*.force.com\/", "webRequestBlocking", "*:\/\/*.salesforce.com\/", "*:\/\/*.force.com\/" ], "page_action": { "default_name": "SBC", "default_icon": "alexa.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*" ], "js": [ "inject.js" ] } ] } |