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. 拡張機能の基本情報
| 名前 | |
| 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"
]
}
]
} | |