Salesforce Dashboards on TV
This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.
O que é Salesforce Dashboards on TV?
Salesforce Dashboards on TV é uma extensão do Chrome desenvolvida por Paul van Brouwershaven, e sua principal característica é "This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Salesforce Dashboards on TV
Baixe arquivos de extensão Salesforce Dashboards on TV no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
                        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                     Informações Básicas da Extensão
| Nome |   |  
| ID | imhafmhikkdannadmlekonhplfmfdddf | 
| URL Oficial | https://chromewebstore.google.com/detail/salesforce-dashboards-on/imhafmhikkdannadmlekonhplfmfdddf | 
| Descrição | This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window. | 
| Tamanho do Arquivo | 18.59 KB | 
| Contagem de Instalações | 970 | 
| Versão Atual | 1.5 | 
| Última Atualização | 2018-12-31 | 
| Data de Publicação | 2018-12-31 | 
| Classificação | 4.71/5 Total de 7 Avaliações | 
| Desenvolvedor | Paul van Brouwershaven | 
| Tipo de Pagamento | free | 
| URL da Página de Ajuda | https://bitbucket.org/pvanbrouwershaven/salesforce-dashboards-on-tv/issues | 
| Idiomas Suportados | 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
        }
    ]
}  |  |