PrettyPrint
JavaScript and CSS formatter/syntax highlighter
What is PrettyPrint?
PrettyPrint is a Chrome extension developed by gildas, and its main feature is "JavaScript and CSS formatter/syntax highlighter".
Extension Screenshots
Download PrettyPrint Extension CRX File
Download PrettyPrint 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 extension is based on : - Webkit syntax highlighter - jsbeautifier (http://jsbeautifier.org) - cssbeautify (http://senchalabs.github.com/cssbeautify/)
Extension Basic Information
Name | |
ID | nipdlgebaanapcphbcidpmmmkcecpkhg |
Official URL | https://chrome.google.com/webstore/detail/prettyprint/nipdlgebaanapcphbcidpmmmkcecpkhg |
Description | JavaScript and CSS formatter/syntax highlighter |
File Size | 56.62 KB |
Installation Count | 17,966 |
Current Version | 0.0.25 |
Last Updated | 2012-11-02 |
Publish Date | 2012-11-02 |
Rating | 3.86/5 Total 100 Ratings |
Developer | gildas |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/gildas-lormeau/PrettyPrint |
Help Page URL | https://github.com/gildas-lormeau/PrettyPrint/issues |
Privacy Policy Page URL | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
Supported Languages | 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 } |