JS Beautifier settings tweaks

Changes jsbeautifier.org to have 4 spaces, no wrap, and be JSLint-happy by default.

Co to jest JS Beautifier settings tweaks?

JS Beautifier settings tweaks to rozszerzenie Chrome opracowane przez ryanpcmcquen, a jego główną funkcją jest „Changes jsbeautifier.org to have 4 spaces, no wrap, and be JSLint-happy by default.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia JS Beautifier settings tweaks

Pobierz pliki rozszerzeń JS Beautifier settings tweaks 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

                        Makes jsbeautifier.org use 4 spaces, JSLint-happy formatting and no character wrap length by default.                    

Podstawowe informacje o rozszerzeniu

Nazwa JS Beautifier settings tweaks JS Beautifier settings tweaks
ID gknjdefghnnlfbgaecnffmmbopiedlje
Oficjalny URL https://chromewebstore.google.com/detail/js-beautifier-settings-tw/gknjdefghnnlfbgaecnffmmbopiedlje
Opis Changes jsbeautifier.org to have 4 spaces, no wrap, and be JSLint-happy by default.
Rozmiar pliku 40.51 KB
Liczba instalacji 49
Aktualna Wersja 0.3.3
Ostatnia Aktualizacja 2020-04-28
Data Publikacji 2020-04-25
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper ryanpcmcquen
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ryanpcmcquen/jsbeautifierSettingsTweaks.js
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JS Beautifier settings tweaks",
    "description": "Changes jsbeautifier.org to have 4 spaces, no wrap, and be JSLint-happy by default.",
    "version": "0.3.3",
    "icons": {
        "128": "jsbeautifierSettingsTweaks__icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/jsbeautifier.org\/",
                "http:\/\/jsbeautifier.org\/*",
                "https:\/\/beautifier.io\/",
                "https:\/\/beautifier.io\/*"
            ],
            "js": [
                "jsbeautifierSettingsTweaks.js"
            ]
        }
    ]
}