Formula Beautify

Beautify your complex sheet formulas

Cos'è Formula Beautify?

Formula Beautify è un'estensione di Chrome sviluppata da unleashworkshq, e la sua funzione principale è "Beautify your complex sheet formulas".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Formula Beautify

Scarica i file di estensione Formula Beautify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        If you write & modify complex formulas a lot in Google Sheet you can try our extension to beautify it for your easier reading & debuggin.                    

Informazioni di Base sull'Estensione

Nome Formula Beautify Formula Beautify
ID ilhdkahpmhggjagggfcblnjflgpgpgbd
URL Ufficiale https://chromewebstore.google.com/detail/formula-beautify/ilhdkahpmhggjagggfcblnjflgpgpgbd
Descrizione Beautify your complex sheet formulas
Dimensione del File 307 KB
Conteggio Installazioni 323
Versione Corrente 0.0.1
Ultimo Aggiornamento 2022-04-07
Data di Pubblicazione 2022-04-07
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore unleashworkshq
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.0.1",
    "manifest_version": 3,
    "short_name": "__MSG_appShortName__",
    "default_locale": "en",
    "author": "Unleash Works",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "minimum_chrome_version": "88.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "scripts\/content.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [
        "https:\/\/docs.google.com\/spreadsheets\/*"
    ],
    "host_permissions": [
        "https:\/\/docs.google.com\/spreadsheets\/*"
    ]
}