Salesforce Background Control

Case background control

Co to jest Salesforce Background Control?

Salesforce Background Control to rozszerzenie Chrome opracowane przez https://joshbirk.herokuapp.com, a jego główną funkcją jest „Case background control”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Salesforce Background Control

Pobierz pliki rozszerzeń Salesforce Background Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Salesforce Background Control Salesforce Background Control
ID jgehjigfmmdedecnalcjpkjbhlfcichb
Oficjalny URL https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb
Opis Case background control
Rozmiar pliku 18.46 KB
Liczba instalacji 21
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2016-05-31
Data Publikacji 2016-05-31
Deweloper https://joshbirk.herokuapp.com
Typ Płatności free
Strona Rozszerzenia https://github.com/joshbirk/EchoCaseControl
Obsługiwane Języki 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"
            ]
        }
    ]
}