Profile Permissionset

Displays profile or permissionset details for the selected object or field

Vad är Profile Permissionset?

Profile Permissionset är en Chrome-tillägg utvecklad av Suresh Ponnuvelu, och dess huvudfunktion är "Displays profile or permissionset details for the selected object or field".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Profile Permissionset-förlängningens CRX-fil

Ladda ner Profile Permissionset-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Profile Permissionset Profile Permissionset
ID npkaodgkkpgkecfolfmnacikhfmhoend
Officiell webbadress https://chromewebstore.google.com/detail/profile-permissionset/npkaodgkkpgkecfolfmnacikhfmhoend
Beskrivning Displays profile or permissionset details for the selected object or field
Filstorlek 103 KB
Antal Installationer 79
Aktuell Version 2.0.0.1
Senast Uppdaterad 2020-01-03
Publiceringsdatum 2020-01-03
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Suresh Ponnuvelu
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/*"
            ]
        }
    ]
}