Salesforce Background Control

Case background control

Qu'est-ce que Salesforce Background Control ?

Salesforce Background Control est une extension Chrome développée par https://joshbirk.herokuapp.com, et sa fonction principale est "Case background control".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Salesforce Background Control

Téléchargez les fichiers d'extension Salesforce Background Control au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Salesforce Background Control Salesforce Background Control
ID jgehjigfmmdedecnalcjpkjbhlfcichb
URL Officiel https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb
Description Case background control
Taille du Fichier 18.46 KB
Nombre d'Installations 21
Version Actuelle 1.0.1
Dernière Mise à Jour 2016-05-31
Date de Publication 2016-05-31
Développeur https://joshbirk.herokuapp.com
Type de Paiement free
Site Web de l'Extension https://github.com/joshbirk/EchoCaseControl
Langues Prises en Charge 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"
            ]
        }
    ]
}