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 |
官方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" ] } } |