JS_Beautify,CSS_Beautify,HTML_Beautify

This extension For beautify js and css and html

Hvad er JS_Beautify,CSS_Beautify,HTML_Beautify?

JS_Beautify,CSS_Beautify,HTML_Beautify er en Chrome-udvidelse udviklet af djallalfekirine, og dens hovedfunktion er "This extension For beautify js and css and html".

Udvidelsesskærmbilleder

screenshot

Download JS_Beautify,CSS_Beautify,HTML_Beautify-udvidelses-CRX-fil

Download JS_Beautify,CSS_Beautify,HTML_Beautify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn JS_Beautify,CSS_Beautify,HTML_Beautify JS_Beautify,CSS_Beautify,HTML_Beautify
ID hjakbhfifpopkbpkajkpmggocfmkgapd
Officiel URL https://chromewebstore.google.com/detail/jsbeautifycssbeautifyhtml/hjakbhfifpopkbpkajkpmggocfmkgapd
Beskrivelse This extension For beautify js and css and html
Filstørrelse 70 KB
Antal Installationer 65
Nuværende Version 1.3
Senest Opdateret 2023-12-11
Udgivelsesdato 2023-12-11
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler djallalfekirine
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
}