EZTM

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

EZTM क्या है?

EZTM kakudenbuzou द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that helps you to do LGTM with fancy gifs."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में EZTM एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    }
}