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 - это расширение Chrome, разработанное Kirk Bater, и его основная функция - "Replaces the User ID text with a user's name in Github Enterprise.".
Снимки экрана расширения
Скачать файл CRX расширения GitHub Enterprise User ID to Name Replacement
Скачайте файлы расширений 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" ] } |