GitMeme

Easily add memes to your Github comments by simply typing a word after a forward slash, like /shipit

GitMeme란 무엇입니까?

GitMeme은(는) https://gitme.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily add memes to your Github comments by simply typing a word after a forward slash, like /shipit"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GitMeme 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Gitmeme brings the fun back to Github.  Seamlessly add GIFs and meme images to your pull request comments and descriptions by just typing a keyword.  For example, type "/shipit" and a gif of a big ship is inserted, or "/goodjob" to let the developer know how awesome she is!

Gitmeme integrates with Giphy to find you fun memes, and also builds a community of popular images.  It remembers your favorite images, and you can add new images to really express yourself.  It also remembers images made by others in your company or open source community, so you are suggested images from those around you, allowing for fun in-jokes on your team.                    

확장 프로그램 기본 정보

이름 GitMeme GitMeme
ID bjpibkoafohcjghgpbiinhfoobmbijcc
공식 URL https://chromewebstore.google.com/detail/gitmeme/bjpibkoafohcjghgpbiinhfoobmbijcc
설명 Easily add memes to your Github comments by simply typing a word after a forward slash, like /shipit
파일 크기 308 KB
설치 횟수 102
현재 버전 2.2
최근 업데이트 2023-12-03
출시 날짜 2019-11-12
평점 5.00/5 총 3 개의 평점
개발자 https://gitme.me
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gitme.me
개인정보 보호 정책 페이지 URL https://chofter.com/privacy_policy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitMeme",
    "version": "2.2",
    "description": "Easily add memes to your Github comments by simply typing a word after a forward slash, like \/shipit",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "identity",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/gitme.me\/*",
        "https:\/\/api.giphy.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*",
                "https:\/\/github.com\/*",
                "https:\/\/git.musta.ch\/*"
            ],
            "css": [
                "build\/style.css"
            ],
            "js": [
                "build\/contentScript.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/selectedButton.png",
                "assets\/collapseButton.png",
                "assets\/expandButton.png",
                "assets\/icon-48x48.png",
                "popup\/index.html"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "minimum_chrome_version": "93",
    "background": {
        "service_worker": "build\/service_worker.js"
    },
    "icons": {
        "16": "assets\/icon-16x16.png",
        "48": "assets\/icon-48x48.png",
        "128": "assets\/icon-128x128.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}