EZTM

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

Was ist EZTM?

EZTM ist eine Chrome-Erweiterung, die von kakudenbuzou entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension that helps you to do LGTM with fancy gifs.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

EZTM-Erweiterungs-CRX-Datei herunterladen

Laden Sie EZTM-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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)                    

Grundlegende Informationen zur Erweiterung

Name EZTM EZTM
ID pilidjngjpaijlblpfdncckldgecngak
Offizielle URL https://chromewebstore.google.com/detail/eztm/pilidjngjpaijlblpfdncckldgecngak
Beschreibung Chrome extension that helps you to do LGTM with fancy gifs.
Dateigröße 7.89 KB
Installationsanzahl 32
Aktuelle Version 0.1.0
Letztes Update 2023-01-14
Veröffentlichungsdatum 2022-11-23
Entwickler kakudenbuzou
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/kakudenbuzo/eztm
Hilfeseite URL https://github.com/kakudenbuzo/eztm
Unterstützte Sprachen 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"
        }
    }
}