Formula Beautify
Beautify your complex sheet formulas
What is Formula Beautify?
Formula Beautify is a Chrome extension developed by unleashworkshq, and its main feature is "Beautify your complex sheet formulas".
Extension Screenshots
Download Formula Beautify Extension CRX File
Download Formula Beautify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
If you write & modify complex formulas a lot in Google Sheet you can try our extension to beautify it for your easier reading & debuggin.
Extension Basic Information
Name | Formula Beautify |
ID | ilhdkahpmhggjagggfcblnjflgpgpgbd |
Official URL | https://chromewebstore.google.com/detail/formula-beautify/ilhdkahpmhggjagggfcblnjflgpgpgbd |
Description | Beautify your complex sheet formulas |
File Size | 307 KB |
Installation Count | 323 |
Current Version | 0.0.1 |
Last Updated | 2022-04-07 |
Publish Date | 2022-04-07 |
Rating | 4.67/5 Total 3 Ratings |
Developer | unleashworkshq |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |