Salesforce Searchbox

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

什麼是Salesforce Searchbox?

Salesforce Searchbox是由Sid開發的Chrome擴展程式,該擴展的主要功能是“A simple search box on top of all configuration items of salesforce setup items.”。

擴展截圖

screenshot
screenshot
screenshot

下載Salesforce Searchbox擴展crx文件

下載Salesforce Searchbox擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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]                    

擴展基本資訊

名稱 Salesforce Searchbox Salesforce Searchbox
ID moaokcjghnjifeeahifofckbmhofjdbi
官方網址 https://chromewebstore.google.com/detail/salesforce-searchbox/moaokcjghnjifeeahifofckbmhofjdbi
簡介 A simple search box on top of all configuration items of salesforce setup items.
檔案大小 36.98 KB
安裝次數 1,371
目前版本 2.1
更新時間 2014-09-22
上架時間 2014-09-22
評分 4.19/5 共 16 次評分
開發者 Sid
電子郵箱 [email protected]
付費類型 free
支援的語言 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\/*"
            ]
        }
    ]
}