CSV Formatter

CSV Formatter

Format select data with header

Merlin
Additional files are visible only to premium users

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