GitHub Macros

Allow the developer to easily add images and gifs to comments

O que é GitHub Macros?

GitHub Macros é uma extensão do Chrome desenvolvida por Avishai, e sua principal característica é "Allow the developer to easily add images and gifs to comments".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub Macros

Baixe arquivos de extensão GitHub Macros no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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 :)                    

Informações Básicas da Extensão

Nome GitHub Macros GitHub Macros
ID nmiadikamipnmkbflmapmailmdbkfcch
URL Oficial https://chromewebstore.google.com/detail/github-macros/nmiadikamipnmkbflmapmailmdbkfcch
Descrição Allow the developer to easily add images and gifs to comments
Tamanho do Arquivo 99.67 KB
Contagem de Instalações 79
Versão Atual 1.0.7
Última Atualização 2022-10-09
Data de Publicação 2022-01-10
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Avishai
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/avishail/github-macros
Idiomas Suportados 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"
            ]
        }
    ]
}