Run Force.com SOQL Paginated

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

Merlin
Additional files are visible only to premium users

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