Formula Beautify
Beautify your complex sheet formulas
Was ist Formula Beautify?
Formula Beautify ist eine Chrome-Erweiterung, die von unleashworkshq entwickelt wurde, und ihr Hauptmerkmal ist "Beautify your complex sheet formulas".
Erweiterungsscreenshots
Formula Beautify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Formula Beautify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
If you write & modify complex formulas a lot in Google Sheet you can try our extension to beautify it for your easier reading & debuggin.
Grundlegende Informationen zur Erweiterung
Name | Formula Beautify |
ID | ilhdkahpmhggjagggfcblnjflgpgpgbd |
Offizielle URL | https://chromewebstore.google.com/detail/formula-beautify/ilhdkahpmhggjagggfcblnjflgpgpgbd |
Beschreibung | Beautify your complex sheet formulas |
Dateigröße | 307 KB |
Installationsanzahl | 323 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2022-04-07 |
Veröffentlichungsdatum | 2022-04-07 |
Bewertung | 4.67/5 Insgesamt 3 Bewertungen |
Entwickler | unleashworkshq |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } |