SQL Formatter

SQL Formatter

Formats your SQL for easier reading, code review, and debugging.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SQL Formatter",
  "description": "Formats your SQL for easier reading, code review, and debugging.",
  "version": "0.0.0.3",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js",
      "sql-formatter.js",
      "formatter.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "codeMirrorIO.js"
  ],
  "browser_action": {}
}