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