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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
        }
    ]
}