JS_Beautify,CSS_Beautify,HTML_Beautify

This extension For beautify js and css and html

JS_Beautify,CSS_Beautify,HTML_Beautify là gì?

JS_Beautify,CSS_Beautify,HTML_Beautify là một tiện ích mở rộng Chrome được phát triển bởi djallalfekirine, và tính năng chính của nó là "This extension For beautify js and css and html".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng JS_Beautify,CSS_Beautify,HTML_Beautify

Tải xuống các tệp mở rộng JS_Beautify,CSS_Beautify,HTML_Beautify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên JS_Beautify,CSS_Beautify,HTML_Beautify JS_Beautify,CSS_Beautify,HTML_Beautify
ID hjakbhfifpopkbpkajkpmggocfmkgapd
URL Chính Thức https://chromewebstore.google.com/detail/jsbeautifycssbeautifyhtml/hjakbhfifpopkbpkajkpmggocfmkgapd
Mô tả This extension For beautify js and css and html
Kích Thước Tệp 70 KB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2023-12-11
Ngày Phát Hành 2023-12-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển djallalfekirine
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}