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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Go Directly To User Detail on SFDC एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" } } |