Salesforce Admin Check All

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

Salesforce Admin Check Allคืออะไร?

Salesforce Admin Check All เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dan Pazehoski และคุณลักษณะหลักของมันคือ "This extension provides 'check all' checkboxes on admin pages."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Admin Check All

ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Admin Check All ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}