Extend AppSheet

Boost productivity and clear the clutter

Qu'est-ce que Extend AppSheet ?

Extend AppSheet est une extension Chrome développée par https://apportunities.ca, et sa fonction principale est "Boost productivity and clear the clutter".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Extend AppSheet

Téléchargez les fichiers d'extension Extend AppSheet au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Extend AppSheet Extend AppSheet
ID okmajcnbngimcfckkmdpdmgaabhbbfog
URL Officiel https://chromewebstore.google.com/detail/extend-appsheet/okmajcnbngimcfckkmdpdmgaabhbbfog
Description Boost productivity and clear the clutter
Taille du Fichier 153 KB
Nombre d'Installations 5,000
Version Actuelle 0.5.2
Dernière Mise à Jour 2021-12-16
Date de Publication 2021-06-21
Évaluation 4.57/5 Total 7 Évaluations
Développeur https://apportunities.ca
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}