GitHub Enterprise User ID to Name Replacement
Replaces the User ID text with a user's name in Github Enterprise.
GitHub Enterprise User ID to Name Replacement란 무엇입니까?
GitHub Enterprise User ID to Name Replacement은(는) Kirk Bater에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replaces the User ID text with a user's name in Github Enterprise."입니다.
확장 프로그램 스크린샷
GitHub Enterprise User ID to Name Replacement 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension fixes the issue where your displayed name in Github Enterprise is your SSO login. This `should` be a drop-in use for any company, just set the URL to your Github Enterprise API URL and pass in a Regex string that is what the SSO login should match on. For more detailed instructions, please see https://gist.github.com/iamkirkbater/a298273ec6e96e2eff3b314d1ec0a49c
확장 프로그램 기본 정보
이름 | GitHub Enterprise User ID to Name Replacement |
ID | fnjaebglpjdjnojajbohfcfgblcfdpdg |
공식 URL | https://chromewebstore.google.com/detail/github-enterprise-user-id/fnjaebglpjdjnojajbohfcfgblcfdpdg |
설명 | Replaces the User ID text with a user's name in Github Enterprise. |
파일 크기 | 54.6 KB |
설치 횟수 | 19 |
현재 버전 | 1.1 |
최근 업데이트 | 2017-05-19 |
출시 날짜 | 2017-05-19 |
개발자 | Kirk Bater |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Enterprise User ID to Name Replacement", "description": "Replaces the User ID text with a user's name in Github Enterprise.", "version": "1.1", "options_ui": { "page": "options.html", "chrome_style": true }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-3.1.0.min.js", "underscore-min.js", "content.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "inject.js" ] } |