GitHub Macros

Allow the developer to easily add images and gifs to comments

什么是GitHub Macros?

GitHub Macros是由Avishai开发的Chrome扩展程序,该扩展的主要功能是“Allow the developer to easily add images and gifs to comments”。

扩展截图

screenshot

下载GitHub Macros扩展crx文件

下载GitHub Macros扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}