Salesforce Admin Check All

This extension provides 'check all' checkboxes on admin pages.

Salesforce Admin Check All란 무엇입니까?

Salesforce Admin Check All은(는) Dan Pazehoski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides 'check all' checkboxes on admin pages."입니다.

확장 프로그램 스크린샷

screenshot

Salesforce Admin Check All 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Salesforce Admin Check All is an extension that enhances the Salesforce Setup pages by adding "check all" checkboxes to various checkbox lists. This enhanced functionality helps make some setup tasks more efficient by potentially saving administrators from having to manually check each checkbox in a list individually.

Initially, this extension only adds checkboxes to the Object Permissions and Field Permissions lists on the Object Settings page for Profiles and Permission Sets. Future versions will expand the functionality into other setup areas.

UPDATE v2.1: A "check all" checkbox is now added to the Set Field History Tracking page on custom objects. Bug fixes.

NOTE:  This extension requires the use of the Enhanced Profile User Interface.                    

확장 프로그램 기본 정보

이름 Salesforce Admin Check All Salesforce Admin Check All
ID efcahpjiijlbojmfmaceicchnhkgdkje
공식 URL https://chromewebstore.google.com/detail/salesforce-admin-check-al/efcahpjiijlbojmfmaceicchnhkgdkje
설명 This extension provides 'check all' checkboxes on admin pages.
파일 크기 40.4 KB
설치 횟수 15,243
현재 버전 2.1
최근 업데이트 2015-01-19
출시 날짜 2015-01-19
평점 4.00/5 총 75 개의 평점
개발자 Dan Pazehoski
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Admin Check All",
    "short_name": "SF Check All",
    "description": "This extension provides 'check all' checkboxes on admin pages.",
    "version": "2.1",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*\/e?s=ObjectsAndTabs*",
                "https:\/\/*.salesforce.com\/*\/e?s=EntityPermissions*",
                "https:\/\/*.salesforce.com\/*\/FieldHistoryTracking*"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "pageScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "script.js",
        "jquery-1.11.1.min.js"
    ]
}