Go Directly To User Detail on SFDC

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

Qu'est-ce que Go Directly To User Detail on SFDC ?

Go Directly To User Detail on SFDC est une extension Chrome développée par http://eugeneniemand.com, et sa fonction principale est "Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Go Directly To User Detail on SFDC

Téléchargez les fichiers d'extension Go Directly To User Detail on SFDC au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Go Directly To User Detail on SFDC Go Directly To User Detail on SFDC
ID jpdmkhlcnjjndfpgljcpmllddeidkdjc
URL Officiel https://chrome.google.com/webstore/detail/go-directly-to-user-detai/jpdmkhlcnjjndfpgljcpmllddeidkdjc
Description Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com
Taille du Fichier 46.86 KB
Nombre d'Installations 671
Version Actuelle 1.2
Dernière Mise à Jour 2013-10-14
Date de Publication 2013-10-14
Évaluation 4.46/5 Total 13 Évaluations
Développeur http://eugeneniemand.com
Type de Paiement free
Site Web de l'Extension http://www.eugeneniemand.com
Langues Prises en Charge 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"
    }
}