Apex Finder
This extension find an apex Class/Trigger/Page.
Apex Finder là gì?
Apex Finder là một tiện ích mở rộng Chrome được phát triển bởi Naresh Yadav , Dushyant Sonwar, và tính năng chính của nó là "This extension find an apex Class/Trigger/Page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Apex Finder
Tải xuống các tệp mở rộng Apex Finder 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
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]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ioilpjglnidiadffhdpeiakbkkhbflpe |
URL Chính Thức | https://chrome.google.com/webstore/detail/apex-finder/ioilpjglnidiadffhdpeiakbkkhbflpe |
Mô tả | This extension find an apex Class/Trigger/Page. |
Kích Thước Tệp | 317 KB |
Số Lần Cài Đặt | 133 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2016-04-27 |
Ngày Phát Hành | 2016-04-27 |
Đánh Giá | 5.00/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | Naresh Yadav , Dushyant Sonwar |
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": "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" ] } |