JSBeautify for Google Chrome™

JSBeautify for Google Chrome™

When you view a JavaScript file, Clippy will ask you if you want to format it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "JSBeautify for Google Chrome™",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "When you view a JavaScript file, Clippy will ask you if you want to format it.",
  "icons": {
    "48": "assets/icon_48.png",
    "128": "assets/icon_128.png"
  },
  "background": {
    "scripts": [
      "javascripts/options_server.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*.js*",
        "https://*/*.js*",
        "ftp://*/*.js*",
        "file://*/*.js*"
      ],
      "run_at": "document_end",
      "css": [
        "stylesheets/application.css"
      ],
      "js": [
        "javascripts/application.js"
      ]
    }
  ],
  "options_page": "html/options_page.html",
  "web_accessible_resources": [
    "assets/its-clippy-motherfuckers.png"
  ]
}