Formula Beautify
Beautify your complex sheet formulas
Formula Beautifyとは何ですか?
Formula Beautifyはunleashworkshqによって開発されたChromeの拡張機能で、その主な機能は「Beautify your complex sheet formulas」です。
拡張機能のスクリーンショット
Formula Beautify拡張機能のCRXファイルをダウンロード
Formula Beautify拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
If you write & modify complex formulas a lot in Google Sheet you can try our extension to beautify it for your easier reading & debuggin.
拡張機能の基本情報
名前 | Formula Beautify |
ID | ilhdkahpmhggjagggfcblnjflgpgpgbd |
公式URL | https://chromewebstore.google.com/detail/formula-beautify/ilhdkahpmhggjagggfcblnjflgpgpgbd |
説明 | Beautify your complex sheet formulas |
ファイルサイズ | 307 KB |
インストール数 | 323 |
現在のバージョン | 0.0.1 |
最終更新日 | 2022-04-07 |
公開日 | 2022-04-07 |
評価 | 4.67/5 合計 3 レビュー |
開発者 | unleashworkshq |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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\/*" ] } |