CSV Formatter
Format select data with header
什麼是CSV Formatter?
CSV Formatter是由zoujinhe開發的Chrome擴展程式,該擴展的主要功能是“Format select data with header”。
擴展截圖
下載CSV Formatter擴展crx文件
下載CSV Formatter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | enjmadekbjfjfifodfnjdljccjgpemcg |
官方網址 | 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" ] } } |