Profile Permissionset

Displays profile or permissionset details for the selected object or field

Profile Permissionsetคืออะไร?

Profile Permissionset เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Suresh Ponnuvelu และคุณลักษณะหลักของมันคือ "Displays profile or permissionset details for the selected object or field"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Profile Permissionset

ดาวน์โหลดไฟล์ส่วนขยาย 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
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\/*"
            ]
        }
    ]
}