EZTM

Chrome extension that helps you to do LGTM with fancy gifs.

EZTM란 무엇입니까?

EZTM은(는) kakudenbuzou에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension that helps you to do LGTM with fancy gifs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension helps you do LGTM with fancy gifs on GitHub.

# How to use
1. Focus on text area.
2. Right click to show context menu.
3. Click "Insert LGTM gif".
4. That's it! 

"shift + cmd + v" is a shortcut command to insert LGTM gif.

You can change the command if you want. (chrome://extensions/shortcuts)                    

확장 프로그램 기본 정보

이름 EZTM EZTM
ID pilidjngjpaijlblpfdncckldgecngak
공식 URL https://chromewebstore.google.com/detail/eztm/pilidjngjpaijlblpfdncckldgecngak
설명 Chrome extension that helps you to do LGTM with fancy gifs.
파일 크기 7.89 KB
설치 횟수 32
현재 버전 0.1.0
최근 업데이트 2023-01-14
출시 날짜 2022-11-23
개발자 kakudenbuzou
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kakudenbuzo/eztm
도움말 페이지 URL https://github.com/kakudenbuzo/eztm
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "EZTM",
    "description": "Chrome extension that helps you to do LGTM with fancy gifs.",
    "version": "0.1.0",
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "commands": {
        "closeSidebar": {
            "suggested_key": {
                "default": "Ctrl+Shift+V"
            },
            "description": "Insert LGTM gif"
        }
    }
}