JSBeautify for Google Chrome™
When you view a JavaScript file, Clippy will ask you if you want to format it.
What is JSBeautify for Google Chrome™?
JSBeautify for Google Chrome™ is a Chrome extension developed by Thomas Rix, and its main feature is "When you view a JavaScript file, Clippy will ask you if you want to format it.".
Extension Screenshots
Download JSBeautify for Google Chrome™ Extension CRX File
Download JSBeautify for Google Chrome™ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extensions builds off of Einar Lielmanis's JSBeautifier project. If you view a JavaScript file in your browser, you will be given the option to format it. You can set specific formatting settings in the options page of the extension. The source code for this extension is available on GitHub at https://github.com/rixth/jsbeautify-for-chrome Logo by Clement Ng, http://clmnt.com
Extension Basic Information
Name | JSBeautify for Google Chrome™ |
ID | kkioiolcacgoihiiekambdciinadbpfk |
Official URL | https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk |
Description | When you view a JavaScript file, Clippy will ask you if you want to format it. |
File Size | 37.22 KB |
Installation Count | 7,691 |
Current Version | 1.0.2 |
Last Updated | 2013-01-14 |
Publish Date | 2013-01-13 |
Rating | 3.72/5 Total 53 Ratings |
Developer | Thomas Rix |
Payment Type | free |
Extension Website | http://rixth.org |
Supported Languages | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "JSBeautify for Google Chrome\u2122", "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" ] } |