Code Minifier (JS, CSS, HTML)

A lite and free JavasScript, CSS and HTML minifier for your browser.

Vad är Code Minifier (JS, CSS, HTML)?

Code Minifier (JS, CSS, HTML) är en Chrome-tillägg utvecklad av leocompson, och dess huvudfunktion är "A lite and free JavasScript, CSS and HTML minifier for your browser.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Code Minifier (JS, CSS, HTML)-förlängningens CRX-fil

Ladda ner Code Minifier (JS, CSS, HTML)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Code Minifier, is an extension that lets you easily minify codes in your browser. This addon supports JavaScript, CSS, and HTML as input languages. You can either browser files via the (+) button at the UI (top-left corner) or drag & drop a file in the left textarea. The former method is preferred as the coding language for the input file can be detected automatically and the interface will be updated accordingly (no need to adjust the input language manually). 

Code Minifier can work offline without the need for an internet connection. It uses an open-source library called "Terser" and available in this (https://github.com/terser/terser) GitHub repo. Moreover, it also uses the famous CodeMirror (https://github.com/codemirror/CodeMirror) library to format the input and output codes. Within the interface, there are several buttons at the top toolbar which are self-explanatory. There is also a settings list at the top which contains several options for the minifier. Change any desired settings and see the live result in the output field. To download the minified result, please click on the download button at the top toolbar.

If you have a feature request or found a bug to report, please fill the bug report form on the addon's homepage (https://mybrowseraddon.com/code-minifier.html).                    

Grundläggande Information om Tillägg

Namn Code Minifier (JS, CSS, HTML) Code Minifier (JS, CSS, HTML)
ID lhlkedhmnfkjmbedonkegcifhmpbhbpk
Officiell webbadress https://chromewebstore.google.com/detail/code-minifier-js-css-html/lhlkedhmnfkjmbedonkegcifhmpbhbpk
Beskrivning A lite and free JavasScript, CSS and HTML minifier for your browser.
Filstorlek 545 KB
Antal Installationer 476
Aktuell Version 0.1.1
Senast Uppdaterad 2022-01-16
Publiceringsdatum 2021-06-01
Utvecklare leocompson
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://mybrowseraddon.com/code-minifier.html
Hjälpsida URL https://mybrowseraddon.com/code-minifier.html
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.1",
    "manifest_version": 3,
    "offline_enabled": true,
    "short_name": "code-minifier",
    "name": "Code Minifier (JS, CSS, HTML)",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "sandbox": {
        "pages": [
            "data\/interface\/index.html"
        ]
    },
    "homepage_url": "https:\/\/mybrowseraddon.com\/code-minifier.html",
    "description": "A lite and free JavasScript, CSS and HTML minifier for your browser.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Code Minifier",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}