Salesforce Background Control
Case background control
Salesforce Background Controlคืออะไร?
Salesforce Background Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://joshbirk.herokuapp.com และคุณลักษณะหลักของมันคือ "Case background control"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Background Control
ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Background Control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Salesforce Background Control |
ID | jgehjigfmmdedecnalcjpkjbhlfcichb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb |
คำอธิบาย | Case background control |
ขนาดไฟล์ | 18.46 KB |
จำนวนการติดตั้ง | 21 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2016-05-31 |
วันที่เผยแพร่ | 2016-05-31 |
ผู้พัฒนา | https://joshbirk.herokuapp.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/joshbirk/EchoCaseControl |
ภาษาที่รองรับ | 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" ] } ] } |