Sheets To JSON

Download JSON from Google Sheets

ما هو Sheets To JSON؟

Sheets To JSON هو إضافة Chrome تم تطويرها بواسطة ntarasiuk، والميزة الرئيسية لها هي "Download JSON from Google Sheets".

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

screenshot

تحميل ملف CRX للإضافة Sheets To JSON

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

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

                        Easily download your Google Sheets data as JSON files.
Perfect for integrating with other applications or storing your data in a more portable format.

How to use:
Just click the "JSON" button in the toolbar in sheet you want to download.
The JSON file will be saved to your computer.


Troubleshooting: 
Make sure your first row is a header row with header names or it may not work.
* This extension isn't meant to convert a complicated sheet, just a simple sheet with headers and row data.

If you like it, please rate it 5 stars! :)                    

معلومات أساسية عن التمديد

الاسم Sheets To JSON Sheets To JSON
ID enmkalgdnmcaljdfkojckdbhkjmffmoa
عنوان URL الرسمي https://chromewebstore.google.com/detail/sheets-to-json/enmkalgdnmcaljdfkojckdbhkjmffmoa
الوصف Download JSON from Google Sheets
حجم الملف 4.56 KB
عدد التثبيتات 4,000
النسخة الحالية 0.3
آخر تحديث 2023-11-26
تاريخ النشر 2023-06-24
تقييم 3.50/5 مجموع تقييمات 16
المطور ntarasiuk
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.linkedin.com/in/ntarasiuk
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sheets To JSON",
    "action": [],
    "manifest_version": 3,
    "version": "0.3",
    "description": "Download JSON from Google Sheets",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/d\/*"
            ],
            "js": [
                "getJSON.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}