Salesforce User Search

Searches for Users using the Id, Usernam/Email Address or Name as well as thier name.

Salesforce User Searchคืออะไร?

Salesforce User Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย timothygentetobrien และคุณลักษณะหลักของมันคือ "Searches for Users using the Id, Usernam/Email Address or Name as well as thier name."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce User Search

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

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

                        This Salesforce extension allows you to search for users using their Full Name, Id, Email or Username.

This will enable users to bypass the Salesforce 2 step process of viewing users.

**NEW**
When searching for a user if you input any of the following after the username it will do a specific function:
1. --login; this will automatically log in as the user.
2. --deactivate; this will prompt you to confirm deactivation it will then forward you to the user deactivation page and automatically deactivate the user.
3. --activate; this will prompt you to confirm activation it will then forward you to the user to the activated users page.
4. --edit; this will automatically take you to the users profile and it will go direct to edit mode on the user.
4. --reset; this will reset the users password after confirmation then redirect you to the users page.

There are more still to come! However if you fancy submitting a translation or if you notice an issue with a translation please do get in contact.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Salesforce User Search Salesforce User Search
ID diiplokplceelkmeppegicjjplkflfml
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/salesforce-user-search/diiplokplceelkmeppegicjjplkflfml
คำอธิบาย Searches for Users using the Id, Usernam/Email Address or Name as well as thier name.
ขนาดไฟล์ 38.88 KB
จำนวนการติดตั้ง 66
เวอร์ชันปัจจุบัน 6
อัปเดตครั้งล่าสุด 2017-02-02
วันที่เผยแพร่ 2017-02-01
คะแนน 4.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา timothygentetobrien
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,en-GB,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "6",
    "browser_action": {
        "default_icon": "salesforce.png",
        "name": "Click to search"
    },
    "background": {
        "scripts": [
            "userSearch.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "connection.js"
            ],
            "matches": [
                "*:\/\/*.salesforce.com\/",
                "*:\/\/*.force.com\/"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "16": "salesforce.png",
        "48": "salesforce.png",
        "128": "salesforce.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}