Showing posts with label sfdc. Show all posts
Showing posts with label sfdc. Show all posts

Friday, November 28, 2014

SOQL Query Editor as Chrome Extension

I as a developer always need to query Salesforce.com from developer console. However I feel its quite slow.

This tool allows you to query right from your chrome extension and show results beautifully. And best part, you can download results in excel :)

Do try this - https://chrome.google.com/webstore/detail/salesforce-soql-query-edi/fcbnphbbaaommndlpdaldnfejndammcc


Thursday, October 25, 2012

Hide Salesforce Logo

You can hide the logo from top using the javascript below.


<script language="JavaScript">try{var pa=document.getElementById("phHeaderLogoImage"); pa.style.display = "none";}catch(err){alert('There was an error on this webpage='+err.description);}</script>


You can either use it in visualforce page or add it in homepage components.