PrettyPrint
JavaScript and CSS formatter/syntax highlighter
Wat is PrettyPrint?
PrettyPrint is een Chrome-extensie ontwikkeld door gildas, en de belangrijkste functie is "JavaScript and CSS formatter/syntax highlighter".
Extensie Screenshots
Download het CRX-bestand van de extensie PrettyPrint
Download PrettyPrint-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension is based on :
- Webkit syntax highlighter
- jsbeautifier (http://jsbeautifier.org)
- cssbeautify (http://senchalabs.github.com/cssbeautify/) Basisinformatie over de Extensie
| Naam | |
| ID | nipdlgebaanapcphbcidpmmmkcecpkhg |
| Officiële URL | https://chrome.google.com/webstore/detail/prettyprint/nipdlgebaanapcphbcidpmmmkcecpkhg |
| Beschrijving | JavaScript and CSS formatter/syntax highlighter |
| Bestandsgrootte | 56.62 KB |
| Aantal Installaties | 17,966 |
| Huidige Versie | 0.0.25 |
| Laatst Bijgewerkt | 2012-11-02 |
| Publicatiedatum | 2012-11-02 |
| Beoordeling | 3.86/5 Totaal 100 Beoordelingen |
| Ontwikkelaar | gildas |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/gildas-lormeau/PrettyPrint |
| Help Pagina-URL | https://github.com/gildas-lormeau/PrettyPrint/issues |
| URL van de Privacybeleid Pagina | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
| Ondersteunde Talen | 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
} | |