Formula Beautify
Beautify your complex sheet formulas
Hvad er Formula Beautify?
Formula Beautify er en Chrome-udvidelse udviklet af unleashworkshq, og dens hovedfunktion er "Beautify your complex sheet formulas".
Udvidelsesskærmbilleder
Download Formula Beautify-udvidelses-CRX-fil
Download Formula Beautify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
If you write & modify complex formulas a lot in Google Sheet you can try our extension to beautify it for your easier reading & debuggin.
Grundlæggende oplysninger om udvidelsen
Navn | Formula Beautify |
ID | ilhdkahpmhggjagggfcblnjflgpgpgbd |
Officiel URL | https://chromewebstore.google.com/detail/formula-beautify/ilhdkahpmhggjagggfcblnjflgpgpgbd |
Beskrivelse | Beautify your complex sheet formulas |
Filstørrelse | 307 KB |
Antal Installationer | 323 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2022-04-07 |
Udgivelsesdato | 2022-04-07 |
Bedømmelse | 4.67/5 Samlet 3 Bedømmelser |
Udvikler | unleashworkshq |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/*" ] } |