CSV Formatter

Format select data with header

ما هو CSV Formatter؟

CSV Formatter هو إضافة Chrome تم تطويرها بواسطة zoujinhe، والميزة الرئيسية لها هي "Format select data with header".

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

screenshot

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

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

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

                        v 0.0.3
+ copy raw logs

v 0.0.1
*** first version, not very intuitive to use ***
How to use: 
- Define CSV headers in options page.
- Select csv text on any webpage.
- Right click on selected text, select "CSV Formatter", apply selected text with one of configured headers.
- Click "CSV Formatter" plugin/extension icon to see formatted CSV showed in tables.                    

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

الاسم CSV Formatter CSV Formatter
ID enjmadekbjfjfifodfnjdljccjgpemcg
عنوان URL الرسمي https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg
الوصف Format select data with header
حجم الملف 116 KB
عدد التثبيتات 95
النسخة الحالية 0.0.3
آخر تحديث 2021-08-23
تاريخ النشر 2021-08-11
المطور zoujinhe
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSV Formatter",
    "description": "Format select data with header",
    "version": "0.0.3",
    "browser_action": {
        "default_popup": "index.html"
    },
    "options_page": "options.html",
    "icons": {
        "16": "logo-small.png",
        "48": "logo-small.png",
        "128": "logo-small.png"
    },
    "permissions": [
        "contextMenus",
        "unlimitedStorage",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    }
}