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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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\/*"
            ]
        }
    ]
}