Salesforce Background Control

Case background control

Τι είναι το Salesforce Background Control;

Το Salesforce Background Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://joshbirk.herokuapp.com, και η κύρια λειτουργία του είναι "Case background control".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Salesforce Background Control

Λήψη αρχείων επέκτασης Salesforce Background Control σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Salesforce Background Control Salesforce Background Control
ID jgehjigfmmdedecnalcjpkjbhlfcichb
Επίσημο URL https://chromewebstore.google.com/detail/salesforce-background-con/jgehjigfmmdedecnalcjpkjbhlfcichb
Περιγραφή Case background control
Μέγεθος Αρχείου 18.46 KB
Αριθμός Εγκαταστάσεων 21
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2016-05-31
Ημερομηνία Δημοσίευσης 2016-05-31
Προγραμματιστής https://joshbirk.herokuapp.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/joshbirk/EchoCaseControl
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}