Salesforce Background Control

Case background control

Salesforce Background Control क्या है?

Salesforce Background Control https://joshbirk.herokuapp.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Case background control"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Salesforce Background Control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}