LGTM

LGTM (Looks Good To Me) lets you put image urls into a text field when you're happy with what you're seeing.

Was ist LGTM?

LGTM ist eine Chrome-Erweiterung, die von Rafał Grodziński entwickelt wurde, und ihr Hauptmerkmal ist "LGTM (Looks Good To Me) lets you put image urls into a text field when you're happy with what you're seeing.".

Erweiterungsscreenshots

screenshot
screenshot

LGTM-Erweiterungs-CRX-Datei herunterladen

Laden Sie LGTM-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

                        LGTM (Looks Good To Me) is a browser extension that allows you to insert an image link directly into a selectd text field. Link can be both in a standard form as well as in Markdown style.                    

Grundlegende Informationen zur Erweiterung

Name LGTM LGTM
ID pahdifkbcgneagemikgmkdfminpghnll
Offizielle URL https://chromewebstore.google.com/detail/lgtm/pahdifkbcgneagemikgmkdfminpghnll
Beschreibung LGTM (Looks Good To Me) lets you put image urls into a text field when you're happy with what you're seeing.
Dateigröße 37.9 KB
Installationsanzahl 45
Aktuelle Version 1.1.0
Letztes Update 2022-11-20
Veröffentlichungsdatum 2022-10-18
Entwickler Rafał Grodziński
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://rafalgrodzinski.com/lgtm
Unterstützte Sprachen en,fr,pl,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.1.0",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}