LGTM

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

LGTMคืออะไร?

LGTM เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rafał Grodziński และคุณลักษณะหลักของมันคือ "LGTM (Looks Good To Me) lets you put image urls into a text field when you're happy with what you're seeing."

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย LGTM ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LGTM LGTM
ID pahdifkbcgneagemikgmkdfminpghnll
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/lgtm/pahdifkbcgneagemikgmkdfminpghnll
คำอธิบาย LGTM (Looks Good To Me) lets you put image urls into a text field when you're happy with what you're seeing.
ขนาดไฟล์ 37.9 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2022-11-20
วันที่เผยแพร่ 2022-10-18
ผู้พัฒนา Rafał Grodziński
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://rafalgrodzinski.com/lgtm
ภาษาที่รองรับ 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"
    ]
}