Profile Permissionset
Displays profile or permissionset details for the selected object or field
Qu'est-ce que Profile Permissionset ?
Profile Permissionset est une extension Chrome développée par Suresh Ponnuvelu, et sa fonction principale est "Displays profile or permissionset details for the selected object or field".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Profile Permissionset
Téléchargez les fichiers d'extension Profile Permissionset au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | npkaodgkkpgkecfolfmnacikhfmhoend |
URL Officiel | https://chromewebstore.google.com/detail/profile-permissionset/npkaodgkkpgkecfolfmnacikhfmhoend |
Description | Displays profile or permissionset details for the selected object or field |
Taille du Fichier | 103 KB |
Nombre d'Installations | 79 |
Version Actuelle | 2.0.0.1 |
Dernière Mise à Jour | 2020-01-03 |
Date de Publication | 2020-01-03 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Suresh Ponnuvelu |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |