Salesforce Background Control

Case background control

Vad är Salesforce Background Control?

Salesforce Background Control är en Chrome-tillägg utvecklad av https://joshbirk.herokuapp.com, och dess huvudfunktion är "Case background control".

Tilläggsskärmbilder

screenshot

Ladda ner Salesforce Background Control-förlängningens CRX-fil

Ladda ner Salesforce Background Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Salesforce Background Control Salesforce Background Control
ID jgehjigfmmdedecnalcjpkjbhlfcichb
Officiell webbadress https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb
Beskrivning Case background control
Filstorlek 18.46 KB
Antal Installationer 21
Aktuell Version 1.0.1
Senast Uppdaterad 2016-05-31
Publiceringsdatum 2016-05-31
Utvecklare https://joshbirk.herokuapp.com
Betalningssätt free
Tilläggswebbplats https://github.com/joshbirk/EchoCaseControl
Stödda Språk 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"
            ]
        }
    ]
}