Salesforce Dashboards on TV
This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.
Wat is Salesforce Dashboards on TV?
Salesforce Dashboards on TV is een Chrome-extensie ontwikkeld door Paul van Brouwershaven, en de belangrijkste functie is "This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.".
Extensie Screenshots
Download het CRX-bestand van de extensie Salesforce Dashboards on TV
Download Salesforce Dashboards on TV-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        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                     Basisinformatie over de Extensie
| Naam |   |  
| ID | imhafmhikkdannadmlekonhplfmfdddf | 
| Officiële URL | https://chromewebstore.google.com/detail/salesforce-dashboards-on/imhafmhikkdannadmlekonhplfmfdddf | 
| Beschrijving | This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window. | 
| Bestandsgrootte | 18.59 KB | 
| Aantal Installaties | 970 | 
| Huidige Versie | 1.5 | 
| Laatst Bijgewerkt | 2018-12-31 | 
| Publicatiedatum | 2018-12-31 | 
| Beoordeling | 4.71/5 Totaal 7 Beoordelingen | 
| Ontwikkelaar | Paul van Brouwershaven | 
| Betalingswijze | free | 
| Help Pagina-URL | https://bitbucket.org/pvanbrouwershaven/salesforce-dashboards-on-tv/issues | 
| Ondersteunde Talen | 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
        }
    ]
}  |  |