Salesforce Dashboards on TV

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

Salesforce Dashboards on TV là gì?

Salesforce Dashboards on TV là một tiện ích mở rộng Chrome được phát triển bởi Paul van Brouwershaven, và tính năng chính của nó là "This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Dashboards on TV

Tải xuống các tệp mở rộng Salesforce Dashboards on TV dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Dashboards on TV Salesforce Dashboards on TV
ID imhafmhikkdannadmlekonhplfmfdddf
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-dashboards-on/imhafmhikkdannadmlekonhplfmfdddf
Mô tả This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.
Kích Thước Tệp 18.59 KB
Số Lần Cài Đặt 970
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2018-12-31
Ngày Phát Hành 2018-12-31
Đánh Giá 4.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Paul van Brouwershaven
Loại Thanh Toán free
URL Trang Trợ Giúp https://bitbucket.org/pvanbrouwershaven/salesforce-dashboards-on-tv/issues
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}