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ファイルをダウンロード

EZTM拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    }
}