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 là gì?
Go Directly To User Detail on SFDC là một tiện ích mở rộng Chrome được phát triển bởi http://eugeneniemand.com, và tính năng chính của nó là "Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Go Directly To User Detail on SFDC
Tải xuống các tệp mở rộng Go Directly To User Detail on SFDC dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jpdmkhlcnjjndfpgljcpmllddeidkdjc |
URL Chính Thức | https://chrome.google.com/webstore/detail/go-directly-to-user-detai/jpdmkhlcnjjndfpgljcpmllddeidkdjc |
Mô tả | Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com |
Kích Thước Tệp | 46.86 KB |
Số Lần Cài Đặt | 671 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2013-10-14 |
Ngày Phát Hành | 2013-10-14 |
Đánh Giá | 4.46/5 Tổng số 13 Đánh Giá |
Nhà Phát Triển | http://eugeneniemand.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.eugeneniemand.com |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |