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文件
下载GitHub Enterprise User ID to Name Replacement扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } |