Salesforce Background Control
Case background control
Was ist Salesforce Background Control?
Salesforce Background Control ist eine Chrome-Erweiterung, die von https://joshbirk.herokuapp.com entwickelt wurde, und ihr Hauptmerkmal ist "Case background control".
Erweiterungsscreenshots
Salesforce Background Control-Erweiterungs-CRX-Datei herunterladen
Laden Sie Salesforce Background Control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jgehjigfmmdedecnalcjpkjbhlfcichb |
| Offizielle URL | https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb |
| Beschreibung | Case background control |
| Dateigröße | 18.46 KB |
| Installationsanzahl | 21 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2016-05-31 |
| Veröffentlichungsdatum | 2016-05-31 |
| Entwickler | https://joshbirk.herokuapp.com |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/joshbirk/EchoCaseControl |
| Unterstützte Sprachen | 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"
]
}
]
} | |