Salesforce Background Control
Case background control
Wat is Salesforce Background Control?
Salesforce Background Control is een Chrome-extensie ontwikkeld door https://joshbirk.herokuapp.com, en de belangrijkste functie is "Case background control".
Extensie Screenshots
Download het CRX-bestand van de extensie Salesforce Background Control
Download Salesforce Background Control-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Salesforce Background Control |
ID | jgehjigfmmdedecnalcjpkjbhlfcichb |
Officiële URL | https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb |
Beschrijving | Case background control |
Bestandsgrootte | 18.46 KB |
Aantal Installaties | 21 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2016-05-31 |
Publicatiedatum | 2016-05-31 |
Ontwikkelaar | https://joshbirk.herokuapp.com |
Betalingswijze | free |
Extensiewebsite | https://github.com/joshbirk/EchoCaseControl |
Ondersteunde Talen | 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" ] } ] } |