Go Directly To User Detail on SFDC

Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com

Go Directly To User Detail on SFDCคืออะไร?

Go Directly To User Detail on SFDC เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://eugeneniemand.com และคุณลักษณะหลักของมันคือ "Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com"

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Go Directly To User Detail on SFDC

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

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

                        When Chatter is active on your instance, you will notice that when you click on a username it redirects to the user's profile and their chatter stream which is fine for normal users. However this is a nightmare for administrators as most of the time they actually want the user detail section. Now this can be achieved by going to the profile then clicking on User Detail but that is one unnecessary step and it adds up if you administrate a couple hundred users.

How does it work?

This script appends "noredirect=1" to all href attributes containing "/005" i.e. key prefix for Users.                    

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

ชื่อ Go Directly To User Detail on SFDC Go Directly To User Detail on SFDC
ID jpdmkhlcnjjndfpgljcpmllddeidkdjc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/go-directly-to-user-detai/jpdmkhlcnjjndfpgljcpmllddeidkdjc
คำอธิบาย Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com
ขนาดไฟล์ 46.86 KB
จำนวนการติดตั้ง 671
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2013-10-14
วันที่เผยแพร่ 2013-10-14
คะแนน 4.46/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา http://eugeneniemand.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.eugeneniemand.com
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Go Directly To User Detail on SFDC",
    "description": "Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com",
    "version": "1.2",
    "page_action": {
        "default_icon": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "background.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "icon_128.png"
    }
}