Salesforce Background Control

Case background control

Apa itu Salesforce Background Control?

Salesforce Background Control adalah ekstensi Chrome yang dikembangkan oleh https://joshbirk.herokuapp.com, dan fitur utamanya adalah "Case background control".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Salesforce Background Control

Unduh file ekstensi Salesforce Background Control dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Salesforce Background Control Salesforce Background Control
ID jgehjigfmmdedecnalcjpkjbhlfcichb
URL Resmi https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb
Deskripsi Case background control
Ukuran File 18.46 KB
Jumlah Instalasi 21
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2016-05-31
Tanggal Publikasi 2016-05-31
Pengembang https://joshbirk.herokuapp.com
Tipe Pembayaran free
Situs Ekstensi https://github.com/joshbirk/EchoCaseControl
Bahasa yang Didukung 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"
            ]
        }
    ]
}