Profile Permissionset

Displays profile or permissionset details for the selected object or field

Profile Permissionset là gì?

Profile Permissionset là một tiện ích mở rộng Chrome được phát triển bởi Suresh Ponnuvelu, và tính năng chính của nó là "Displays profile or permissionset details for the selected object or field".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Profile Permissionset

Tải xuống các tệp mở rộng Profile Permissionset dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Profile Permissionset Profile Permissionset
ID npkaodgkkpgkecfolfmnacikhfmhoend
URL Chính Thức https://chromewebstore.google.com/detail/profile-permissionset/npkaodgkkpgkecfolfmnacikhfmhoend
Mô tả Displays profile or permissionset details for the selected object or field
Kích Thước Tệp 103 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 2.0.0.1
Cập Nhật Lần Cuối 2020-01-03
Ngày Phát Hành 2020-01-03
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Suresh Ponnuvelu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}