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 |
公式URL | 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 |
Eメール | [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 } |