Salesforce Searchbox

A simple search box on top of all configuration items of salesforce setup items.

What is Salesforce Searchbox?

Salesforce Searchbox is a Chrome extension developed by Sid, and its main feature is "A simple search box on top of all configuration items of salesforce setup items.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Salesforce Searchbox Extension CRX File

Download Salesforce Searchbox extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Enough time is wasted on finding the class and label by creating views or searching for the same type of fields within an object .

Tired of pressing more link every time ?

I have a solution , try this extension , it brings in a simple search box, which will search in all configuration items on the page.
takes care of pressing the more link.

The plugin supports some basic regex searches 
ex: OR search - formula|lookup

AND search - 
^(?=.*\text1\b)(?=.*\text2\b)


Don't forget to press "Enter" to search and "Esc" to cancel :)


Developed by : Siddharth Nagavarapu
Linked In :http://www.linkedin.com/in/siddharatha
mailto:[email protected]                    

Extension Basic Information

Name Salesforce Searchbox Salesforce Searchbox
ID moaokcjghnjifeeahifofckbmhofjdbi
Official URL https://chromewebstore.google.com/detail/salesforce-searchbox/moaokcjghnjifeeahifofckbmhofjdbi
Description A simple search box on top of all configuration items of salesforce setup items.
File Size 36.98 KB
Installation Count 1,371
Current Version 2.1
Last Updated 2014-09-22
Publish Date 2014-09-22
Rating 4.19/5 Total 16 Ratings
Developer Sid
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Searchbox",
    "short_name": "SF Search",
    "description": "A simple search box on top of all configuration items of salesforce setup items.",
    "version": "2.1",
    "permissions": [
        "https:\/\/*.salesforce.com\/*",
        "http:\/\/*.salesforce.com\/*",
        "https:\/\/*.cloudforce.com\/*",
        "http:\/\/*.cloudforce.com\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*.salesforce.com\/*",
                "https:\/\/*.salesforce.com\/*",
                "http:\/\/*.cloudforce.com\/*",
                "https:\/\/*.cloudforce.com\/*"
            ]
        }
    ]
}