Salesforce Background Control
Case background control
什麼是Salesforce Background Control?
Salesforce Background Control是由https://joshbirk.herokuapp.com開發的Chrome擴展程式,該擴展的主要功能是“Case background control”。
擴展截圖
下載Salesforce Background Control擴展crx文件
下載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.                     擴展基本資訊
| 名稱 |   |  
| ID | jgehjigfmmdedecnalcjpkjbhlfcichb | 
| 官方網址 | 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"
            ]
        }
    ]
}  |  |