Formula Beautify

Beautify your complex sheet formulas

ما هو Formula Beautify؟

Formula Beautify هو إضافة Chrome تم تطويرها بواسطة unleashworkshq، والميزة الرئيسية لها هي "Beautify your complex sheet formulas".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Formula Beautify

قم بتنزيل ملفات الامتداد Formula Beautify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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
البريد الإلكتروني [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\/*"
    ]
}