Salesforce Background Control
Case background control
Hvad er Salesforce Background Control?
Salesforce Background Control er en Chrome-udvidelse udviklet af https://joshbirk.herokuapp.com, og dens hovedfunktion er "Case background control".
Udvidelsesskærmbilleder
Download Salesforce Background Control-udvidelses-CRX-fil
Download Salesforce Background Control-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | jgehjigfmmdedecnalcjpkjbhlfcichb |
| Officiel URL | https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb |
| Beskrivelse | Case background control |
| Filstørrelse | 18.46 KB |
| Antal Installationer | 21 |
| Nuværende Version | 1.0.1 |
| Senest Opdateret | 2016-05-31 |
| Udgivelsesdato | 2016-05-31 |
| Udvikler | https://joshbirk.herokuapp.com |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/joshbirk/EchoCaseControl |
| Understøttede Sprog | 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"
]
}
]
} | |