Salesforce Object Finder
This extension allows you to find out in which object is located a specific field.
Salesforce Object Finderとは何ですか?
Salesforce Object FinderはPaolo Pelliccioneによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to find out in which object is located a specific field.」です。
拡張機能のスクリーンショット
Salesforce Object Finder拡張機能のCRXファイルをダウンロード
Salesforce Object Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to find out in which object is located a specific field.
拡張機能の基本情報
名前 | Salesforce Object Finder |
ID | gdofopjmbeikonciibgfbcenjohdilap |
公式URL | https://chromewebstore.google.com/detail/salesforce-object-finder/gdofopjmbeikonciibgfbcenjohdilap |
説明 | This extension allows you to find out in which object is located a specific field. |
ファイルサイズ | 120 KB |
インストール数 | 196 |
現在のバージョン | 0.13 |
最終更新日 | 2016-03-31 |
公開日 | 2016-03-30 |
評価 | 5.00/5 合計 9 レビュー |
開発者 | Paolo Pelliccione |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce Object Finder", "description": "This extension allows you to find out in which object is located a specific field.", "version": "0.13", "icons": { "48": "icon.png" }, "background": { "page": "background.html", "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' http:\/\/jz01.ru https:\/\/www.paypalobjects.com\/js\/external\/; object-src 'self'", "permissions": [ "storage", "tabs", "background", "cookies", "activeTab", "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ] } |