Apex Finder

This extension find an apex Class/Trigger/Page.

什么是Apex Finder?

Apex Finder是由Naresh Yadav , Dushyant Sonwar开发的Chrome扩展程序,该扩展的主要功能是“This extension find an apex Class/Trigger/Page.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Apex Finder扩展crx文件

下载Apex Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension is a small attempt to help sf developers to find apex class,trigger quickly.
Many time we have to search our apex class for work and salesforce native list view of apex class does not give us ability to find classes . 
This situation gets even worse if there are many packages installed in the org.
This extension search and open an apex class, apex trigger and VF page in the salesforce.com. No need to go using quick search in the salesforce.

How to use.

1) Login to your salesforce/force.com org.
2) After login press CTRL+ENTER key together from keyboard.
3) Type class or trigger or VF page name in the textbox.
4) Select your choice and there you go.
5) If you want to close the textbox than press ESC key from keyboard.

Please Give it a try !!!
And provide us your feedback at : [email protected]                    

扩展基本信息

名称 Apex Finder Apex Finder
ID ioilpjglnidiadffhdpeiakbkkhbflpe
官方URL https://chrome.google.com/webstore/detail/apex-finder/ioilpjglnidiadffhdpeiakbkkhbflpe
简介 This extension find an apex Class/Trigger/Page.
文件大小 317 KB
安装次数 133
当前版本 1.4
更新时间 2016-04-27
上架时间 2016-04-27
评分 5.00/5 共13次评分
开发者 Naresh Yadav , Dushyant Sonwar
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Apex Finder",
    "description": "This extension find an apex Class\/Trigger\/Page.",
    "version": "1.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "jquery-ui-1.8.16.custom.min.js",
            "background.js"
        ],
        "css": [
            "jquery-ui-1.8.16.custom.css",
            "popup.css"
        ],
        "persistent": true
    },
    "icons": {
        "128": "ApexFinder.png"
    },
    "web_accessible_resources": [
        "jquery.min.js",
        "jquery-ui-1.8.16.custom.min.js",
        "background.js",
        "content.js",
        "jquery-ui-1.8.16.custom.css",
        "popup.html",
        "ApexFinder.png",
        "content.html",
        "popup.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.cloudforce.com\/*"
            ],
            "css": [
                "jquery-ui-1.8.16.custom.css",
                "popup.css"
            ],
            "js": [
                "jquery.min.js",
                "jquery-ui-1.8.16.custom.min.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/*.force.com\/*",
        "storage"
    ]
}