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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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"
    ]
}