Salesforce Dashboards on TV
This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.
Co je Salesforce Dashboards on TV?
Salesforce Dashboards on TV je rozšíření Chrome vyvinuté Paul van Brouwershaven, a jeho hlavní funkcí je „This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Salesforce Dashboards on TV
Stáhněte si soubory rozšíření Salesforce Dashboards on TV ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Salesforce Dashboards on TV |
ID | imhafmhikkdannadmlekonhplfmfdddf |
Oficiální URL | https://chromewebstore.google.com/detail/salesforce-dashboards-on/imhafmhikkdannadmlekonhplfmfdddf |
Popis | This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window. |
Velikost souboru | 18.59 KB |
Počet instalací | 970 |
Aktuální Verze | 1.5 |
Poslední Aktualizace | 2018-12-31 |
Datum Vydání | 2018-12-31 |
Hodnocení | 4.71/5 Celkem 7 Hodnocení |
Vývojář | Paul van Brouwershaven |
Typ Platby | free |
URL Stránky Nápovědy | https://bitbucket.org/pvanbrouwershaven/salesforce-dashboards-on-tv/issues |
Podporované Jazyky | 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 } ] } |