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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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