Salesforce Background Control
Case background control
Cos'è Salesforce Background Control?
Salesforce Background Control è un'estensione di Chrome sviluppata da https://joshbirk.herokuapp.com, e la sua funzione principale è "Case background control".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Salesforce Background Control
Scarica i file di estensione Salesforce Background Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | jgehjigfmmdedecnalcjpkjbhlfcichb |
| URL Ufficiale | https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb |
| Descrizione | Case background control |
| Dimensione del File | 18.46 KB |
| Conteggio Installazioni | 21 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2016-05-31 |
| Data di Pubblicazione | 2016-05-31 |
| Sviluppatore | https://joshbirk.herokuapp.com |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/joshbirk/EchoCaseControl |
| Lingue Supportate | 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"
]
}
]
} | |