Salesforce Plus
Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.
Salesforce Plus là gì?
Salesforce Plus là một tiện ích mở rộng Chrome được phát triển bởi Santosh Pradhan, và tính năng chính của nó là "Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.".
Ả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 Salesforce Plus
Tải xuống các tệp mở rộng Salesforce Plus 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
Salesforce Plues comes with a lot of features. It includes: - Schema Explore: Find all the objects in Salesforce, and the fields related to them - Code Search: List down all the Classes/Triggers/Pages/Components, and find a piece of code in just a second - Test Class Coverage: You do not need to go to 'Developer Console' to find the test coverage. Now, do it with a single button click on the Class itself Just explore, and share your feedback and comments.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | nbkfjodmmamogffmbodkdbhfdllcmdkn |
URL Chính Thức | https://chrome.google.com/webstore/detail/salesforce-plus/nbkfjodmmamogffmbodkdbhfdllcmdkn |
Mô tả | Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis. |
Kích Thước Tệp | 337 KB |
Số Lần Cài Đặt | 527 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-12-03 |
Ngày Phát Hành | 2014-12-03 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Santosh Pradhan |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Plus", "version": "1.0", "description": "Salesforce Plus helps you find Codes across Salesforce, find test class coverages, record analysis.", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "icons": { "16": "images\/cloud_16.png", "48": "images\/cloud_48.png", "128": "images\/cloud_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*" ], "css": [ "css\/style.css" ], "js": [ "js\/jquery.js", "js\/script.js", "js\/jquery.dataTables.js" ] } ], "permissions": [ "https:\/\/*.salesforce.com\/*", "cookies", "storage", "declarativeContent" ] } |