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 هو إضافة Chrome تم تطويرها بواسطة http://eugeneniemand.com، والميزة الرئيسية لها هي "Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Go Directly To User Detail on SFDC
قم بتنزيل ملفات الامتداد Go Directly To User Detail on SFDC بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" } } |