Table to CSV

Any html table you click on is downloaded in csv format.

ما هو Table to CSV؟

Table to CSV هو إضافة Chrome تم تطويرها بواسطة kiko، والميزة الرئيسية لها هي "Any html table you click on is downloaded in csv format.".

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

screenshot

تحميل ملف CRX للإضافة Table to CSV

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

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

                        Shift+click on any html table to download in csv format. Works on tables that have inputs. Wraps each column in double quotes and escapes double quotes in table data, so commas and quotes are ok to have in your html column data.                    

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

الاسم Table to CSV Table to CSV
ID obbfbcfdflibnmadiigfgkkheoncmkfi
عنوان URL الرسمي https://chrome.google.com/webstore/detail/table-to-csv/obbfbcfdflibnmadiigfgkkheoncmkfi
الوصف Any html table you click on is downloaded in csv format.
حجم الملف 5.68 KB
عدد التثبيتات 493
النسخة الحالية 1.0.3
آخر تحديث 2021-08-22
تاريخ النشر 2020-09-29
تقييم 5.00/5 مجموع تقييمات 1
المطور kiko
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://rickastleybomb.mediabot.ca/privacy.php
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Table to CSV",
    "description": "Any html table you click on is downloaded in csv format.",
    "version": "1.0.3",
    "icons": {
        "128": "table-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}