Flutter Widget Catcher

Copy Flutter widget easily ...

What is Flutter Widget Catcher?

Flutter Widget Catcher is a Chrome extension developed by rajapakshabawantha, and its main feature is "Copy Flutter widget easily ...".

Extension Screenshots

screenshot

Download Flutter Widget Catcher Extension CRX File

Download Flutter Widget Catcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Flutter Widget Catcher Flutter Widget Catcher
ID fmodefdejfdmjjlfdodklhkoichndcgg
Official URL https://chromewebstore.google.com/detail/flutter-widget-catcher/fmodefdejfdmjjlfdodklhkoichndcgg
Description Copy Flutter widget easily ...
File Size 28.07 KB
Installation Count 530
Current Version 0.3.0
Last Updated 2022-03-29
Publish Date 2022-03-29
Rating 5.00/5 Total 3 Ratings
Developer rajapakshabawantha
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}