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 |
| 官方URL | 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
}
]
} | |