Run Force.com SOQL Paginated

This extension allows you to query the currently logged in Force.com organization. Shows results with search-box and pagination

Τι είναι το Run Force.com SOQL Paginated;

Το Run Force.com SOQL Paginated είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον madhumitamantri, και η κύρια λειτουργία του είναι "This extension allows you to query the currently logged in Force.com organization. Shows results with search-box and pagination".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Run Force.com SOQL Paginated

Λήψη αρχείων επέκτασης Run Force.com SOQL Paginated σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Please Note: 
** If the download as Excel/PDF not working please Mark "Always Allow" for Adobe flash player setting by clicking in the following link.
http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html
(This plugin uses swf for the download feature so if you have this setting as Always Deny or Always ask then it may not work)

Execute Force.com SOQL with Search-box and view the resultin a paginated view (https://sites.google.com/site/soqlpopupquery). This is a raw Google Chrome Extension which is created to support following functionalities: (Please refresh your salesforce browser screen prior to clicking on the Chrome extension Icon.):

1) Run Force.com SOQL queries runtime from browser by typing in the SOQL query in the query box->submit
2) View the result in a paginated format
3) You can also search within your result very quickly from your browser. 
4) You can set the number of records to be viewed on every page.
5) You can sort a column in the result set
6) Click on xls, csv,pdf to download the result in the given format, copy to copy the result and print to print the result.

User needs to login to the Salesforce.com org in the browser or refresh the page if already logged-in before clicking on the Chrome extension. The chrome extension reads the session cookie and runs the query against the respective Salesforce.com org. There is no need to login again in the extension pop-up. Works well when you are working on multiple orgs and running the queries.

This is something I tried out to learn how to make a Chrome Extension, doesn't take care of errors/exceptions.                    

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

Όνομα Run Force.com SOQL Paginated Run Force.com SOQL Paginated
ID jhgpiaofbicpedjhpllghnbfiilbmlio
Επίσημο URL https://chromewebstore.google.com/detail/run-forcecom-soql-paginat/jhgpiaofbicpedjhpllghnbfiilbmlio
Περιγραφή This extension allows you to query the currently logged in Force.com organization. Shows results with search-box and pagination
Μέγεθος Αρχείου 412 KB
Αριθμός Εγκαταστάσεων 334
Τρέχουσα Έκδοση 0.5
Τελευταία Ενημέρωση 2017-01-16
Ημερομηνία Δημοσίευσης 2017-01-16
Αξιολόγηση 4.80/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής madhumitamantri
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Run Force.com SOQL Paginated",
    "version": "0.5",
    "description": "This extension allows you to query the currently logged in Force.com organization. Shows results with search-box and pagination",
    "author": "Madhumita Mantri",
    "permissions": [
        "tabs",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ],
    "browser_action": {
        "default_icon": "ChromeIcon.png",
        "default_popup": "popup_datatable.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.js",
                "js\/forcetk.js",
                "js\/contentscript.js"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/jquery-2.0.3.min.map",
        "js\/popup_tableTools.js",
        "js\/popup_ZeroClipboard.js"
    ]
}