Profile Permissionset
Displays profile or permissionset details for the selected object or field
Was ist Profile Permissionset?
Profile Permissionset ist eine Chrome-Erweiterung, die von Suresh Ponnuvelu entwickelt wurde, und ihr Hauptmerkmal ist "Displays profile or permissionset details for the selected object or field".
Erweiterungsscreenshots
Profile Permissionset-Erweiterungs-CRX-Datei herunterladen
Laden Sie Profile Permissionset-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | npkaodgkkpgkecfolfmnacikhfmhoend |
Offizielle URL | https://chromewebstore.google.com/detail/profile-permissionset/npkaodgkkpgkecfolfmnacikhfmhoend |
Beschreibung | Displays profile or permissionset details for the selected object or field |
Dateigröße | 103 KB |
Installationsanzahl | 79 |
Aktuelle Version | 2.0.0.1 |
Letztes Update | 2020-01-03 |
Veröffentlichungsdatum | 2020-01-03 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Suresh Ponnuvelu |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } ] } |