Salesforce Searchbox

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

Salesforce Searchbox là gì?

Salesforce Searchbox là một tiện ích mở rộng Chrome được phát triển bởi Sid, và tính năng chính của nó là "A simple search box on top of all configuration items of salesforce setup items.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Searchbox

Tải xuống các tệp mở rộng Salesforce Searchbox dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Searchbox Salesforce Searchbox
ID moaokcjghnjifeeahifofckbmhofjdbi
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-searchbox/moaokcjghnjifeeahifofckbmhofjdbi
Mô tả A simple search box on top of all configuration items of salesforce setup items.
Kích Thước Tệp 36.98 KB
Số Lần Cài Đặt 1,371
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2014-09-22
Ngày Phát Hành 2014-09-22
Đánh Giá 4.19/5 Tổng số 16 Đánh Giá
Nhà Phát Triển Sid
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}