Salesforce Dashboards on TV

This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.

Qu'est-ce que Salesforce Dashboards on TV ?

Salesforce Dashboards on TV est une extension Chrome développée par Paul van Brouwershaven, et sa fonction principale est "This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Salesforce Dashboards on TV

Téléchargez les fichiers d'extension Salesforce Dashboards on TV au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Salesforce Dashboards on TV Salesforce Dashboards on TV
ID imhafmhikkdannadmlekonhplfmfdddf
URL Officiel https://chromewebstore.google.com/detail/salesforce-dashboards-on/imhafmhikkdannadmlekonhplfmfdddf
Description This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.
Taille du Fichier 18.59 KB
Nombre d'Installations 970
Version Actuelle 1.5
Dernière Mise à Jour 2018-12-31
Date de Publication 2018-12-31
Évaluation 4.71/5 Total 7 Évaluations
Développeur Paul van Brouwershaven
Type de Paiement free
URL de la Page d'Aide https://bitbucket.org/pvanbrouwershaven/salesforce-dashboards-on-tv/issues
Langues Prises en Charge 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
        }
    ]
}