CSV Formatter

Format select data with header

CSV Formatter là gì?

CSV Formatter là một tiện ích mở rộng Chrome được phát triển bởi zoujinhe, và tính năng chính của nó là "Format select data with header".

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

screenshot

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

Tải xuống các tệp mở rộng CSV Formatter 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

                        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.                    

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

Tên CSV Formatter CSV Formatter
ID enjmadekbjfjfifodfnjdljccjgpemcg
URL Chính Thức https://chromewebstore.google.com/detail/csv-formatter/enjmadekbjfjfifodfnjdljccjgpemcg
Mô tả Format select data with header
Kích Thước Tệp 116 KB
Số Lần Cài Đặt 95
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2021-08-23
Ngày Phát Hành 2021-08-11
Nhà Phát Triển zoujinhe
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}