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."입니다.
확장 프로그램 스크린샷
Apex Finder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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]
확장 프로그램 기본 정보
이름 | |
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" ] } |