EZTM

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

EZTMคืออะไร?

EZTM เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kakudenbuzou และคุณลักษณะหลักของมันคือ "Chrome extension that helps you to do LGTM with fancy gifs."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย EZTM

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
        }
    }
}