Salesforce Dashboards on TV
This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.
什麼是Salesforce Dashboards on TV?
Salesforce Dashboards on TV是由Paul van Brouwershaven開發的Chrome擴展程式,該擴展的主要功能是“This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.”。
擴展截圖
下載Salesforce Dashboards on TV擴展crx文件
下載Salesforce Dashboards on TV擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
CHANGELOG
Version 1.5
- Add Lightning Experience support
Version 1.4.5
- Allow the plugin to run on cloudforce.com
Version 1.4.4
- Fixed bug in refresh and scrolling logic
Version 1.4
- Removed jQuery dependency
- Fixed bug in package
Version 1.1
- It's now possible to configure how often the data is automatically refreshed.
- You can now configure the scrolling speed.
Version 1.0
- Initial release 擴展基本資訊
| 名稱 | |
| ID | imhafmhikkdannadmlekonhplfmfdddf |
| 官方網址 | https://chromewebstore.google.com/detail/salesforce-dashboards-on/imhafmhikkdannadmlekonhplfmfdddf |
| 簡介 | This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window. |
| 檔案大小 | 18.59 KB |
| 安裝次數 | 970 |
| 目前版本 | 1.5 |
| 更新時間 | 2018-12-31 |
| 上架時間 | 2018-12-31 |
| 評分 | 4.71/5 共 7 次評分 |
| 開發者 | Paul van Brouwershaven |
| 付費類型 | free |
| 說明頁面URL | https://bitbucket.org/pvanbrouwershaven/salesforce-dashboards-on-tv/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Salesforce Dashboards on TV",
"description": "This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.",
"version": "1.5",
"author": "Paul van Brouwershaven",
"options_page": "options.html",
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "icon16.png",
"24": "icon24.png",
"48": "icon48.png",
"128": "icon128.png"
},
"page_action": {
"default_icon": "icon.png"
},
"permissions": [
"tabs",
"storage",
"https:\/\/*.force.com\/",
"https:\/\/*.salesforce.com\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/*.salesforce.com\/*",
"https:\/\/*.cloudforce.com\/*",
"https:\/\/*.force.com\/*"
],
"run_at": "document_idle",
"js": [
"script.js"
],
"all_frames": true
}
]
} | |