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 Paul van Brouwershaven द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Salesforce Dashboards on TV एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
        }
    ]
}