JS_Beautify,CSS_Beautify,HTML_Beautify

This extension For beautify js and css and html

Was ist JS_Beautify,CSS_Beautify,HTML_Beautify?

JS_Beautify,CSS_Beautify,HTML_Beautify ist eine Chrome-Erweiterung, die von djallalfekirine entwickelt wurde, und ihr Hauptmerkmal ist "This extension For beautify js and css and html".

Erweiterungsscreenshots

screenshot

JS_Beautify,CSS_Beautify,HTML_Beautify-Erweiterungs-CRX-Datei herunterladen

Laden Sie JS_Beautify,CSS_Beautify,HTML_Beautify-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 For Developers and pen-testers which allow them to beautify JS , CSS , HTML files without go to online sites, so is dynamically  detect the minified JS and CSS files and beautify them , and you can customize the code as you want                    

Grundlegende Informationen zur Erweiterung

Name JS_Beautify,CSS_Beautify,HTML_Beautify JS_Beautify,CSS_Beautify,HTML_Beautify
ID hjakbhfifpopkbpkajkpmggocfmkgapd
Offizielle URL https://chromewebstore.google.com/detail/jsbeautifycssbeautifyhtml/hjakbhfifpopkbpkajkpmggocfmkgapd
Beschreibung This extension For beautify js and css and html
Dateigröße 70 KB
Installationsanzahl 65
Aktuelle Version 1.3
Letztes Update 2023-12-11
Veröffentlichungsdatum 2023-12-11
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler djallalfekirine
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "This extension For beautify js and css and html",
    "icons": {
        "48": "images\/icon-48.png",
        "64": "images\/icon-128.png"
    },
    "manifest_version": 3,
    "name": "JS_Beautify,CSS_Beautify,HTML_Beautify",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "images\/icon-48.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/beautify.min.js",
                "scripts\/beautify-html.min.js",
                "scripts\/beautify-css.min.js",
                "scripts\/content.js",
                "scripts\/prism.min.js",
                "scripts\/prism-javascript.min.js",
                "scripts\/prism-css.min.js"
            ]
        }
    ],
    "commands": {
        "my-shortcut-js": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "beautify To js"
        },
        "my-shortcut-css": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "Command+Shift+2"
            },
            "description": "beautify To css"
        },
        "my-shortcut-html": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "mac": "Command+Shift+0"
            },
            "description": "beautify To html"
        }
    },
    "version": "1.3"
}