JS_Beautify,CSS_Beautify,HTML_Beautify

This extension For beautify js and css and html

Apa itu JS_Beautify,CSS_Beautify,HTML_Beautify?

JS_Beautify,CSS_Beautify,HTML_Beautify adalah ekstensi Chrome yang dikembangkan oleh djallalfekirine, dan fitur utamanya adalah "This extension For beautify js and css and html".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi JS_Beautify,CSS_Beautify,HTML_Beautify

Unduh file ekstensi JS_Beautify,CSS_Beautify,HTML_Beautify dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama JS_Beautify,CSS_Beautify,HTML_Beautify JS_Beautify,CSS_Beautify,HTML_Beautify
ID hjakbhfifpopkbpkajkpmggocfmkgapd
URL Resmi https://chromewebstore.google.com/detail/jsbeautifycssbeautifyhtml/hjakbhfifpopkbpkajkpmggocfmkgapd
Deskripsi This extension For beautify js and css and html
Ukuran File 70 KB
Jumlah Instalasi 65
Versi Saat Ini 1.3
Terakhir Diperbarui 2023-12-11
Tanggal Publikasi 2023-12-11
Penilaian 5.00/5 Total 1 Penilaian
Pengembang djallalfekirine
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
}