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.”。
扩展截图
下载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 |
ID | moaokcjghnjifeeahifofckbmhofjdbi |
官方URL | 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\/*" ] } ] } |