Formula Beautify
Beautify your complex sheet formulas
Vad är Formula Beautify?
Formula Beautify är en Chrome-tillägg utvecklad av unleashworkshq, och dess huvudfunktion är "Beautify your complex sheet formulas".
Tilläggsskärmbilder
Ladda ner Formula Beautify-förlängningens CRX-fil
Ladda ner Formula Beautify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | ilhdkahpmhggjagggfcblnjflgpgpgbd |
| Officiell webbadress | https://chromewebstore.google.com/detail/formula-beautify/ilhdkahpmhggjagggfcblnjflgpgpgbd |
| Beskrivning | Beautify your complex sheet formulas |
| Filstorlek | 307 KB |
| Antal Installationer | 323 |
| Aktuell Version | 0.0.1 |
| Senast Uppdaterad | 2022-04-07 |
| Publiceringsdatum | 2022-04-07 |
| Betyg | 4.67/5 Totalt 3 Betyg |
| Utvecklare | unleashworkshq |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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\/*"
]
} | |