JSBeautify for Google Chrome™
When you view a JavaScript file, Clippy will ask you if you want to format it.
Cos'è JSBeautify for Google Chrome™?
JSBeautify for Google Chrome™ è un'estensione di Chrome sviluppata da Thomas Rix, e la sua funzione principale è "When you view a JavaScript file, Clippy will ask you if you want to format it.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione JSBeautify for Google Chrome™
Scarica i file di estensione JSBeautify for Google Chrome™ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | JSBeautify for Google Chrome™ |
ID | kkioiolcacgoihiiekambdciinadbpfk |
URL Ufficiale | https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk |
Descrizione | When you view a JavaScript file, Clippy will ask you if you want to format it. |
Dimensione del File | 37.22 KB |
Conteggio Installazioni | 7,691 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2013-01-14 |
Data di Pubblicazione | 2013-01-13 |
Valutazione | 3.72/5 Totale 53 Valutazioni |
Sviluppatore | Thomas Rix |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://rixth.org |
Lingue Supportate | 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" ] } |