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