Profile Permissionset

Displays profile or permissionset details for the selected object or field

O que é Profile Permissionset?

Profile Permissionset é uma extensão do Chrome desenvolvida por Suresh Ponnuvelu, e sua principal característica é "Displays profile or permissionset details for the selected object or field".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Profile Permissionset

Baixe arquivos de extensão Profile Permissionset no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Profile Permissionset Profile Permissionset
ID npkaodgkkpgkecfolfmnacikhfmhoend
URL Oficial https://chromewebstore.google.com/detail/profile-permissionset/npkaodgkkpgkecfolfmnacikhfmhoend
Descrição Displays profile or permissionset details for the selected object or field
Tamanho do Arquivo 103 KB
Contagem de Instalações 79
Versão Atual 2.0.0.1
Última Atualização 2020-01-03
Data de Publicação 2020-01-03
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Suresh Ponnuvelu
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/*"
            ]
        }
    ]
}