Salesforce inspector
Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
什麼是Salesforce inspector?
Salesforce inspector是由Søren Krabbe開發的Chrome擴展程式,該擴展的主要功能是“Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.”。
擴展截圖
下載Salesforce inspector擴展crx文件
下載Salesforce inspector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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)
擴展基本資訊
名稱 | Salesforce inspector |
ID | aodjmnfhjibkcdimpodiifdjnnncaafh |
官方網址 | https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh |
簡介 | Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI. |
檔案大小 | 422 KB |
安裝次數 | 596,535 |
目前版本 | 1.14 |
更新時間 | 2022-12-22 |
上架時間 | 2020-05-14 |
評分 | 4.81/5 共 300 次評分 |
開發者 | Søren Krabbe |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
說明頁面URL | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
隱私政策頁面URL | https://github.com/sorenkrabbe/Chrome-Salesforce-inspector |
支援的語言 | 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 } |