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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Paul van Brouwershaven, και η κύρια λειτουργία του είναι "This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Salesforce Dashboards on TV

Λήψη αρχείων επέκτασης 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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Salesforce Dashboards on TV Salesforce Dashboards on TV
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
        }
    ]
}