Salesforce Record Downloader

Tool to download Salesforce Record Data

ما هو Salesforce Record Downloader؟

Salesforce Record Downloader هو إضافة Chrome تم تطويرها بواسطة OSI Consulting، والميزة الرئيسية لها هي "Tool to download Salesforce Record Data".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Salesforce Record Downloader

قم بتنزيل ملفات الامتداد Salesforce Record Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Salesforce Record Downloader Salesforce Record Downloader
ID jpjacljhnlilceoacphmpdomjogoghno
عنوان URL الرسمي https://chromewebstore.google.com/detail/salesforce-record-downloa/jpjacljhnlilceoacphmpdomjogoghno
الوصف Tool to download Salesforce Record Data
حجم الملف 178 KB
عدد التثبيتات 44
النسخة الحالية 2.7
آخر تحديث 2016-09-06
تاريخ النشر 2016-09-05
تقييم 5.00/5 مجموع تقييمات 3
المطور OSI Consulting
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    ]
}