PrettyPrint

JavaScript and CSS formatter/syntax highlighter

Was ist PrettyPrint?

PrettyPrint ist eine Chrome-Erweiterung, die von gildas entwickelt wurde, und ihr Hauptmerkmal ist "JavaScript and CSS formatter/syntax highlighter".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

PrettyPrint-Erweiterungs-CRX-Datei herunterladen

Laden Sie PrettyPrint-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 extension is based on :
- Webkit syntax highlighter
- jsbeautifier (http://jsbeautifier.org) 
- cssbeautify (http://senchalabs.github.com/cssbeautify/)                    

Grundlegende Informationen zur Erweiterung

Name PrettyPrint PrettyPrint
ID nipdlgebaanapcphbcidpmmmkcecpkhg
Offizielle URL https://chrome.google.com/webstore/detail/prettyprint/nipdlgebaanapcphbcidpmmmkcecpkhg
Beschreibung JavaScript and CSS formatter/syntax highlighter
Dateigröße 56.62 KB
Installationsanzahl 17,966
Aktuelle Version 0.0.25
Letztes Update 2012-11-02
Veröffentlichungsdatum 2012-11-02
Bewertung 3.86/5 Insgesamt 100 Bewertungen
Entwickler gildas
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/gildas-lormeau/PrettyPrint
Hilfeseite URL https://github.com/gildas-lormeau/PrettyPrint/issues
URL der Datenschutzrichtlinien-Seite https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md
Unterstützte Sprachen 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
}