Go Directly To User Detail on SFDC

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

Wat is Go Directly To User Detail on SFDC?

Go Directly To User Detail on SFDC is een Chrome-extensie ontwikkeld door http://eugeneniemand.com, en de belangrijkste functie is "Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com".

Extensie Screenshots

Download het CRX-bestand van de extensie Go Directly To User Detail on SFDC

Download Go Directly To User Detail on SFDC-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Go Directly To User Detail on SFDC Go Directly To User Detail on SFDC
ID jpdmkhlcnjjndfpgljcpmllddeidkdjc
Officiële URL https://chrome.google.com/webstore/detail/go-directly-to-user-detai/jpdmkhlcnjjndfpgljcpmllddeidkdjc
Beschrijving Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com
Bestandsgrootte 46.86 KB
Aantal Installaties 671
Huidige Versie 1.2
Laatst Bijgewerkt 2013-10-14
Publicatiedatum 2013-10-14
Beoordeling 4.46/5 Totaal 13 Beoordelingen
Ontwikkelaar http://eugeneniemand.com
Betalingswijze free
Extensiewebsite http://www.eugeneniemand.com
Ondersteunde Talen 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"
    }
}