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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will display and refresh your SalesForce dashboards in a fullscreen scrolling window."입니다.
확장 프로그램 스크린샷
Salesforce Dashboards on TV 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } ] } |