Profile Permissionset

Displays profile or permissionset details for the selected object or field

什麼是Profile Permissionset?

Profile Permissionset是由Suresh Ponnuvelu開發的Chrome擴展程式,該擴展的主要功能是“Displays profile or permissionset details for the selected object or field”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Profile Permissionset擴展crx文件

下載Profile Permissionset擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Profile Permissionset Profile Permissionset
ID npkaodgkkpgkecfolfmnacikhfmhoend
官方網址 https://chromewebstore.google.com/detail/profile-permissionset/npkaodgkkpgkecfolfmnacikhfmhoend
簡介 Displays profile or permissionset details for the selected object or field
檔案大小 103 KB
安裝次數 79
目前版本 2.0.0.1
更新時間 2020-01-03
上架時間 2020-01-03
評分 5.00/5 共 2 次評分
開發者 Suresh Ponnuvelu
電子郵箱 [email protected]
付費類型 free
支援的語言 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\/*"
            ]
        }
    ]
}