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是由http://eugeneniemand.com開發的Chrome擴展程式,該擴展的主要功能是“Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com”。

擴展截圖

下載Go Directly To User Detail on SFDC擴展crx文件

下載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
官方網址 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"
    }
}