Extend AppSheet

Boost productivity and clear the clutter

Co je Extend AppSheet?

Extend AppSheet je rozšíření Chrome vyvinuté https://apportunities.ca, a jeho hlavní funkcí je „Boost productivity and clear the clutter“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Extend AppSheet

Stáhněte si soubory rozšíření Extend AppSheet ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Stay organized with app grouping and editor improvements.

This extension improves the AppSheet developer experience by adding a monospaced font to the editor fields, and collapsing the left side bar to increase screen space. It also helps developers stay organized by enabling creation of custom app groups and sorting on their My Apps page.                    

Základní Informace o Rozšíření

Název Extend AppSheet Extend AppSheet
ID okmajcnbngimcfckkmdpdmgaabhbbfog
Oficiální URL https://chromewebstore.google.com/detail/extend-appsheet/okmajcnbngimcfckkmdpdmgaabhbbfog
Popis Boost productivity and clear the clutter
Velikost souboru 153 KB
Počet instalací 5,000
Aktuální Verze 0.5.2
Poslední Aktualizace 2021-12-16
Datum Vydání 2021-06-21
Hodnocení 4.57/5 Celkem 7 Hodnocení
Vývojář https://apportunities.ca
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Extend AppSheet",
    "version": "0.5.2",
    "description": "Boost productivity and clear the clutter",
    "icons": {
        "16": "ico\/ico_16.png",
        "48": "ico\/ico_48.png",
        "128": "ico\/ico_128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "css": [
                "modules\/modal.css"
            ],
            "js": [
                "modules\/init.js"
            ],
            "matches": [
                "https:\/\/www.appsheet.com\/Template*",
                "https:\/\/www.appsheet.com\/template*"
            ],
            "run_at": "document_end"
        },
        {
            "css": [
                "modules\/appEditor\/lib\/codemirror.css",
                "modules\/appEditor\/lib\/material.css"
            ],
            "js": [
                "modules\/appEditor\/appEditor.js",
                "modules\/appEditor\/lib\/codemirror.js",
                "modules\/appEditor\/lib\/matchbrackets.js",
                "modules\/appEditor\/lib\/closebrackets.js"
            ],
            "matches": [
                "https:\/\/www.appsheet.com\/Template\/AppDef*",
                "https:\/\/www.appsheet.com\/template\/AppDef*"
            ],
            "run_at": "document_end"
        },
        {
            "css": [
                "modules\/myApps\/styles.css"
            ],
            "js": [
                "modules\/myApps\/myApps.js"
            ],
            "matches": [
                "https:\/\/www.appsheet.com\/Template\/Apps",
                "https:\/\/www.appsheet.com\/template\/Apps"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "modules\/*"
            ]
        }
    ]
}