PrettyPrint

JavaScript and CSS formatter/syntax highlighter

Co to jest PrettyPrint?

PrettyPrint to rozszerzenie Chrome opracowane przez gildas, a jego główną funkcją jest „JavaScript and CSS formatter/syntax highlighter”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia PrettyPrint

Pobierz pliki rozszerzeń PrettyPrint w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension is based on :
- Webkit syntax highlighter
- jsbeautifier (http://jsbeautifier.org) 
- cssbeautify (http://senchalabs.github.com/cssbeautify/)                    

Podstawowe informacje o rozszerzeniu

Nazwa PrettyPrint PrettyPrint
ID nipdlgebaanapcphbcidpmmmkcecpkhg
Oficjalny URL https://chrome.google.com/webstore/detail/prettyprint/nipdlgebaanapcphbcidpmmmkcecpkhg
Opis JavaScript and CSS formatter/syntax highlighter
Rozmiar pliku 56.62 KB
Liczba instalacji 17,966
Aktualna Wersja 0.0.25
Ostatnia Aktualizacja 2012-11-02
Data Publikacji 2012-11-02
Ocena 3.86/5 Łącznie 100 Oceny
Deweloper gildas
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gildas-lormeau/PrettyPrint
Adres URL Strony Pomocy https://github.com/gildas-lormeau/PrettyPrint/issues
Adres URL Strony Polityki Prywatności https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md
Obsługiwane Języki 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
}