EZTM

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

EZTM là gì?

EZTM là một tiện ích mở rộng Chrome được phát triển bởi kakudenbuzou, và tính năng chính của nó là "Chrome extension that helps you to do LGTM with fancy gifs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng EZTM

Tải xuống các tệp mở rộng EZTM dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên EZTM EZTM
ID pilidjngjpaijlblpfdncckldgecngak
URL Chính Thức https://chromewebstore.google.com/detail/eztm/pilidjngjpaijlblpfdncckldgecngak
Mô tả Chrome extension that helps you to do LGTM with fancy gifs.
Kích Thước Tệp 7.89 KB
Số Lần Cài Đặt 32
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2023-01-14
Ngày Phát Hành 2022-11-23
Nhà Phát Triển kakudenbuzou
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kakudenbuzo/eztm
URL Trang Trợ Giúp https://github.com/kakudenbuzo/eztm
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}