Flutter Widget Catcher

Copy Flutter widget easily ...

Flutter Widget Catcherคืออะไร?

Flutter Widget Catcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rajapakshabawantha และคุณลักษณะหลักของมันคือ "Copy Flutter widget easily ..."

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

screenshot

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

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

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

                        Sometimes copying flutter widget from web can be tricky. Because finding  correct closing parenthesis might be quite cumbersome  . but don't you worry. Flutter Widget Catcher got you covered                    

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

ชื่อ Flutter Widget Catcher Flutter Widget Catcher
ID fmodefdejfdmjjlfdodklhkoichndcgg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/flutter-widget-catcher/fmodefdejfdmjjlfdodklhkoichndcgg
คำอธิบาย Copy Flutter widget easily ...
ขนาดไฟล์ 28.07 KB
จำนวนการติดตั้ง 530
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2022-03-29
วันที่เผยแพร่ 2022-03-29
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา rajapakshabawantha
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Flutter Widget Catcher",
    "version": "0.3.0",
    "description": "Copy Flutter widget easily ...",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Flutter Widget Catcher",
        "default_popup": "popup.html"
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "snackbar.css"
            ]
        }
    ]
}