Salesforce Background Control
Case background control
什么是Salesforce Background Control?
Salesforce Background Control是由https://joshbirk.herokuapp.com开发的Chrome扩展程序,该扩展的主要功能是“Case background control”。
扩展截图
下载Salesforce Background Control扩展crx文件
下载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" ] } ] } |