PrettyPrint
JavaScript and CSS formatter/syntax highlighter
Cos'è PrettyPrint?
PrettyPrint è un'estensione di Chrome sviluppata da gildas, e la sua funzione principale è "JavaScript and CSS formatter/syntax highlighter".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione PrettyPrint
Scarica i file di estensione PrettyPrint 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 extension is based on : - Webkit syntax highlighter - jsbeautifier (http://jsbeautifier.org) - cssbeautify (http://senchalabs.github.com/cssbeautify/)
Informazioni di Base sull'Estensione
Nome | |
ID | nipdlgebaanapcphbcidpmmmkcecpkhg |
URL Ufficiale | https://chrome.google.com/webstore/detail/prettyprint/nipdlgebaanapcphbcidpmmmkcecpkhg |
Descrizione | JavaScript and CSS formatter/syntax highlighter |
Dimensione del File | 56.62 KB |
Conteggio Installazioni | 17,966 |
Versione Corrente | 0.0.25 |
Ultimo Aggiornamento | 2012-11-02 |
Data di Pubblicazione | 2012-11-02 |
Valutazione | 3.86/5 Totale 100 Valutazioni |
Sviluppatore | gildas |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/gildas-lormeau/PrettyPrint |
URL della Pagina di Aiuto | https://github.com/gildas-lormeau/PrettyPrint/issues |
URL della Pagina della Politica sulla Privacy | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "PrettyPrint", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "version": "0.0.25", "description": "JavaScript and CSS formatter\/syntax highlighter", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*" ], "js": [ "bootstrap.js" ], "run_at": "document_end" }, { "matches": [ "file:\/\/\/*" ], "js": [ "content.js", "bootstrap.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "permissions": [ "contextMenus", "tabs", "http:\/\/*\/", "https:\/\/*\/", "ftp:\/\/*\/" ], "manifest_version": 2 } |