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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}