Salesforce Record Downloader

Tool to download Salesforce Record Data

Salesforce Record Downloader là gì?

Salesforce Record Downloader là một tiện ích mở rộng Chrome được phát triển bởi OSI Consulting, và tính năng chính của nó là "Tool to download Salesforce Record Data".

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

screenshot

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

Tải xuống các tệp mở rộng Salesforce Record Downloader 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

                        This tool will help you download the current opened record in salesforce domain. This will be useful when you want to quickly share the data with external entities.
The data will be download as CSV and can be easily shared.

Upcoming Features :
- Option to Download the List View                    

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

Tên Salesforce Record Downloader Salesforce Record Downloader
ID jpjacljhnlilceoacphmpdomjogoghno
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-record-downloa/jpjacljhnlilceoacphmpdomjogoghno
Mô tả Tool to download Salesforce Record Data
Kích Thước Tệp 178 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 2.7
Cập Nhật Lần Cuối 2016-09-06
Ngày Phát Hành 2016-09-05
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển OSI Consulting
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-webstore-128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "button.css",
                "inspect-inline.css"
            ],
            "js": [
                "inspector.js",
                "button.js",
                "inspect-inline.js"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visual.force.com\/*",
                "https:\/\/*.lightning.force.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'none'",
    "description": "Tool to download Salesforce Record Data",
    "icons": {
        "128": "icon-webstore-128.png"
    },
    "incognito": "split",
    "manifest_version": 2,
    "minimum_chrome_version": "50",
    "name": "Salesforce Record Downloader",
    "permissions": [
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.force.com\/*",
        "cookies"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.7",
    "web_accessible_resources": [
        "popup.html"
    ]
}