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