Formula Beautify

Beautify your complex sheet formulas

Formula Beautify là gì?

Formula Beautify là một tiện ích mở rộng Chrome được phát triển bởi unleashworkshq, và tính năng chính của nó là "Beautify your complex sheet formulas".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Formula Beautify

Tải xuống các tệp mở rộng Formula Beautify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        If you write & modify complex formulas a lot in Google Sheet you can try our extension to beautify it for your easier reading & debuggin.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Formula Beautify Formula Beautify
ID ilhdkahpmhggjagggfcblnjflgpgpgbd
URL Chính Thức https://chromewebstore.google.com/detail/formula-beautify/ilhdkahpmhggjagggfcblnjflgpgpgbd
Mô tả Beautify your complex sheet formulas
Kích Thước Tệp 307 KB
Số Lần Cài Đặt 323
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2022-04-07
Ngày Phát Hành 2022-04-07
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển unleashworkshq
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}