Profile Permissionset
Displays profile or permissionset details for the selected object or field
Profile Permissionsetとは何ですか?
Profile PermissionsetはSuresh Ponnuveluによって開発されたChromeの拡張機能で、その主な機能は「Displays profile or permissionset details for the selected object or field」です。
拡張機能のスクリーンショット
Profile Permissionset拡張機能のCRXファイルをダウンロード
Profile Permissionset拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Extension to view Profile or Permissionset names of selected Object and Fields. You can quickly validate the security settings and navigate to the Profile /Permissionset. Note:- This extension will work only in the object details page.
拡張機能の基本情報
名前 | |
ID | npkaodgkkpgkecfolfmnacikhfmhoend |
公式URL | https://chromewebstore.google.com/detail/profile-permissionset/npkaodgkkpgkecfolfmnacikhfmhoend |
説明 | Displays profile or permissionset details for the selected object or field |
ファイルサイズ | 103 KB |
インストール数 | 79 |
現在のバージョン | 2.0.0.1 |
最終更新日 | 2020-01-03 |
公開日 | 2020-01-03 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Suresh Ponnuvelu |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.0.0.1", "name": "Profile Permissionset", "short_name": "Security Settings", "description": "Displays profile or permissionset details for the selected object or field", "author": { "name": "Suresh Ponnuvelu" }, "icons": { "128": "img\/icon.png", "16": "img\/icon.png", "48": "img\/icon.png" }, "permissions": [ "tabs", "contextMenus", "storage", "cookies", "https:\/\/*.salesforce.com\/*", "https:\/\/*.force.com\/*" ], "background": { "persistent": true, "scripts": [ "js\/constants.js", "js\/utils.js", "js\/background.js" ] }, "browser_action": { "default_icon": "img\/icon.png", "default_title": "Profile Permissionset" }, "content_scripts": [ { "all_frames": false, "css": [ "css\/content.css" ], "js": [ "js\/constants.js", "js\/utils.js", "js\/content.js" ], "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*" ] } ] } |