Profile Permissionset

Displays profile or permissionset details for the selected object or field

Co je Profile Permissionset?

Profile Permissionset je rozšíření Chrome vyvinuté Suresh Ponnuvelu, a jeho hlavní funkcí je „Displays profile or permissionset details for the selected object or field“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Profile Permissionset

Stáhněte si soubory rozšíření Profile Permissionset ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Profile Permissionset Profile Permissionset
ID npkaodgkkpgkecfolfmnacikhfmhoend
Oficiální URL https://chromewebstore.google.com/detail/profile-permissionset/npkaodgkkpgkecfolfmnacikhfmhoend
Popis Displays profile or permissionset details for the selected object or field
Velikost souboru 103 KB
Počet instalací 79
Aktuální Verze 2.0.0.1
Poslední Aktualizace 2020-01-03
Datum Vydání 2020-01-03
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Suresh Ponnuvelu
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/*"
            ]
        }
    ]
}