Salesforce Dashboards on TV
This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.
Was ist Salesforce Dashboards on TV?
Salesforce Dashboards on TV ist eine Chrome-Erweiterung, die von Paul van Brouwershaven entwickelt wurde, und ihr Hauptmerkmal ist "This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.".
Erweiterungsscreenshots
Salesforce Dashboards on TV-Erweiterungs-CRX-Datei herunterladen
Laden Sie Salesforce Dashboards on TV-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Salesforce Dashboards on TV |
ID | imhafmhikkdannadmlekonhplfmfdddf |
Offizielle URL | https://chromewebstore.google.com/detail/salesforce-dashboards-on/imhafmhikkdannadmlekonhplfmfdddf |
Beschreibung | This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window. |
Dateigröße | 18.59 KB |
Installationsanzahl | 970 |
Aktuelle Version | 1.5 |
Letztes Update | 2018-12-31 |
Veröffentlichungsdatum | 2018-12-31 |
Bewertung | 4.71/5 Insgesamt 7 Bewertungen |
Entwickler | Paul van Brouwershaven |
Zahlungsart | free |
Hilfeseite URL | https://bitbucket.org/pvanbrouwershaven/salesforce-dashboards-on-tv/issues |
Unterstützte Sprachen | 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 } ] } |