Salesforce inspector
Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
Salesforce inspector là gì?
Salesforce inspector là một tiện ích mở rộng Chrome được phát triển bởi Søren Krabbe, và tính năng chính của nó là "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.".
Ả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 inspector
Tải xuống các tệp mở rộng Salesforce inspector 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
Extension to add a metadata layout on top of the standard Salesforce UI to improve the productivity and joy of Salesforce configuration, development, and integration work. See more at https://github.com/sorenkrabbe/Chrome-Salesforce-inspector (also available for firefox)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Salesforce inspector |
ID | aodjmnfhjibkcdimpodiifdjnnncaafh |
URL Chính Thức | https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh |
Mô tả | Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI. |
Kích Thước Tệp | 422 KB |
Số Lần Cài Đặt | 596,535 |
Phiên Bản Hiện Tại | 1.14 |
Cập Nhật Lần Cuối | 2022-12-22 |
Ngày Phát Hành | 2020-05-14 |
Đánh Giá | 4.81/5 Tổng số 300 Đánh Giá |
Nhà Phát Triển | Søren Krabbe |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
URL Trang Trợ Giúp | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
URL Trang Chính Sách Bảo Mật | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce inspector", "description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.", "version": "1.14", "icons": { "128": "icon128.png" }, "minimum_chrome_version": "61", "permissions": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*", "https:\/\/*.cloudforce.com\/*", "https:\/\/*.visualforce.com\/*", "cookies" ], "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.visual.force.com\/*", "https:\/\/*.lightning.force.com\/*", "https:\/\/*.cloudforce.com\/*", "https:\/\/*.visualforce.com\/*" ], "all_frames": true, "css": [ "button.css", "inspect-inline.css" ], "js": [ "button.js", "inspect-inline.js" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "popup.html", "data-export.html", "data-import.html", "inspect.html", "metadata-retrieve.html", "explore-api.html", "limits.html" ], "incognito": "split", "manifest_version": 2 } |