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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects directly to User Detail instead of new Chatter User Profile on salesforce.com"입니다.
확장 프로그램 스크린샷
Go Directly To User Detail on SFDC 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |