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
官方網址 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"
        }
    }
}