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
公式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"
    }
}