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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces the User ID text with a user's name in Github Enterprise."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Enterprise User ID to Name Replacement एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |