Custom Settings Exporter for Salesforce

Export all Custom Settings from Salesforce To Excel in three clicks

Τι είναι το Custom Settings Exporter for Salesforce;

Το Custom Settings Exporter for Salesforce είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rajiv Bhatt, και η κύρια λειτουργία του είναι "Export all Custom Settings from Salesforce To Excel in three clicks".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Custom Settings Exporter for Salesforce

Λήψη αρχείων επέκτασης Custom Settings Exporter for Salesforce σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Export all Salesforce Custom Settings to Excel in 3 clicks!

Use this extension to export all the custom settings from your org to an excel. 

Note: All credits to sorenkrabbe for his extension "salesforce-inspector" available @ https://chrome.google.com/webstore/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh

I have used the code shared by him to improvise and develop this extension. I would share the code of this extension on github soon.

This extension fetches all the custom settings from the org and creates an excel wherein each sheet in the excel would contain the records for a cutom setting. The sheet name would be the custom setting name (30 chars max). Note that __c from the custom setting api name would be truncated.


Steps to export custom settings:

1. Login to any org in salesforce

2. After that, click on the extension icon (the green down arrow on top right in url bar).

3. Click on the "Fetch Custom Settings" button. This would create a popup. The popup would be asynchrnously populated with all the custom settings of your org. Please give it some time to fetch all the records.

4. Once all the records have been fetched (the vertical scroll bar would stop reducing in size :)). Click on the "export to excel" button.

5. Save the excel and view all the custom settings.

Do recommend the extension with you friends and colleagues if you like it.

Also, if you like the extension, please don't forget to Rate it on the Chrome Extension Webstore.

Feedback/Suggestions/Ideas/Comments most welcome.

Thanks again and I hope this extension saves your time and makes you more productive!

For any queries: [email protected]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Custom Settings Exporter for Salesforce Custom Settings Exporter for Salesforce
ID lmfmdaidklofmhheadbjcgcdeidnhbil
Επίσημο URL https://chrome.google.com/webstore/detail/custom-settings-exporter/lmfmdaidklofmhheadbjcgcdeidnhbil
Περιγραφή Export all Custom Settings from Salesforce To Excel in three clicks
Μέγεθος Αρχείου 68.27 KB
Αριθμός Εγκαταστάσεων 1,000
Τρέχουσα Έκδοση 0.0.0.1
Τελευταία Ενημέρωση 2014-10-14
Ημερομηνία Δημοσίευσης 2014-10-14
Αξιολόγηση 3.50/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Rajiv Bhatt
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom Settings Exporter for Salesforce",
    "short_name": "CSExpo",
    "version": "0.0.0.1",
    "manifest_version": 2,
    "description": "Export all Custom Settings from Salesforce To Excel in three clicks",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "sfprodiff16x16.png",
        "19": "sfprodiff19x19.png",
        "48": "sfprodiff48x48.png",
        "128": "sfprodiff128x128.png"
    },
    "permissions": [
        "https:\/\/*.salesforce.com\/",
        "tabs",
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_name": "Custom Settings Exporter for Salesforce",
        "default_icon": "sfprodiff16x16.png",
        "default_popup": "popup.html"
    }
}