Github Show Avatar

Show avatars in pull requests and issue pages

Github Show Avatar क्या है?

Github Show Avatar matthizou द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show avatars in pull requests and issue pages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Github Show Avatar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension will display large avatar pictures in your pull requests and issues list in Github and Github Enterprise. Ideal to quickly identify who created a pull request.
Furthermore, you can overwrite avatars of any user with an image of your choosing, which can bring both fun and better readability in the pages where it is applied. 
It can also display 2 avatars side-to-side, which is really helpful to signal the team that 2 people are taking care of an issue, or have paired together in the code of a pull request.

It supports Github Enterprise on any URL though a really simple process (simply click on the icon when you are in your domain and then on "Activate" button)

Disclaimer : You are going to see your colleagues' faces... even more. ;)                    

एक्सटेंशन की मूल जानकारी

नाम Github Show Avatar Github Show Avatar
ID ndophfllmdjffpbglbeembkdimmeihfi
आधिकारिक URL https://chromewebstore.google.com/detail/github-show-avatar/ndophfllmdjffpbglbeembkdimmeihfi
विवरण Show avatars in pull requests and issue pages
फ़ाइल का आकार 32.18 KB
स्थापना संख्या 91
वर्तमान संस्करण 1.0.4
अंतिम अपडेट 2022-05-02
प्रकाशन तिथि 2020-05-14
रेटिंग 5.00/5 कुल 6 रेटिंग्स
डेवलपर matthizou
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/matthizou/github-show-avatars
सहायता पृष्ठ URL https://github.com/matthizou/github-show-avatars/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Show Avatar",
    "version": "1.0.4",
    "description": "Show avatars in pull requests and issue pages",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/github.com\/*"
    ],
    "icons": {
        "16": "images\/github-avatars16.png",
        "32": "images\/github-avatars32.png",
        "48": "images\/github-avatars48.png",
        "128": "images\/github-avatars128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "optional_permissions": [
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/github-avatars16.png",
            "32": "images\/github-avatars32.png",
            "48": "images\/github-avatars48.png",
            "128": "images\/github-avatars128.png"
        },
        "default_popup": "popup.html"
    }
}