GitHub Macros

Allow the developer to easily add images and gifs to comments

GitHub Macros क्या है?

GitHub Macros Avishai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow the developer to easily add images and gifs to comments"।

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

screenshot

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

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

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

                        This extension enriches Github comment box. Typing "!" inside a comment box will open up a box where you'll be able to search for the right image/meme/gif you want to place inside the comment.

In addition, each media has a name and if you already know the name of the image/meme/gif you want to use, you can simply type $image/mem/gif_name$ and it will be replaced by the desired media.

Now go and make that code review process much more fun :)                    

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

नाम GitHub Macros GitHub Macros
ID nmiadikamipnmkbflmapmailmdbkfcch
आधिकारिक URL https://chromewebstore.google.com/detail/github-macros/nmiadikamipnmkbflmapmailmdbkfcch
विवरण Allow the developer to easily add images and gifs to comments
फ़ाइल का आकार 99.67 KB
स्थापना संख्या 79
वर्तमान संस्करण 1.0.7
अंतिम अपडेट 2022-10-09
प्रकाशन तिथि 2022-01-10
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Avishai
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/avishail/github-macros
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Macros",
    "description": "Allow the developer to easily add images and gifs to comments",
    "version": "1.0.7",
    "version_name": "1.0.7",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "\/img\/icons\/icon.png"
        }
    },
    "icons": {
        "128": "\/img\/icons\/icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "img\/icons\/*.png",
                "font\/*.woff2"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/jquery-3.6.0.min.js",
                "js\/jBox.all.min.js",
                "content.js"
            ],
            "css": [
                "css\/css.css",
                "css\/jBox.all.min.css"
            ]
        }
    ]
}