JSBeautify for Google Chrome™
When you view a JavaScript file, Clippy will ask you if you want to format it.
Was ist JSBeautify for Google Chrome™?
JSBeautify for Google Chrome™ ist eine Chrome-Erweiterung, die von Thomas Rix entwickelt wurde, und ihr Hauptmerkmal ist "When you view a JavaScript file, Clippy will ask you if you want to format it.".
Erweiterungsscreenshots
JSBeautify for Google Chrome™-Erweiterungs-CRX-Datei herunterladen
Laden Sie JSBeautify for Google Chrome™-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | JSBeautify for Google Chrome™ |
ID | kkioiolcacgoihiiekambdciinadbpfk |
Offizielle URL | https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk |
Beschreibung | When you view a JavaScript file, Clippy will ask you if you want to format it. |
Dateigröße | 37.22 KB |
Installationsanzahl | 7,691 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2013-01-14 |
Veröffentlichungsdatum | 2013-01-13 |
Bewertung | 3.72/5 Insgesamt 53 Bewertungen |
Entwickler | Thomas Rix |
Zahlungsart | free |
Erweiterungswebsite | http://rixth.org |
Unterstützte Sprachen | 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" ] } |