ZIP Writer

Create zip files via an easy-to-use UI right in your browser!

Τι είναι το ZIP Writer;

Το ZIP Writer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον loora, και η κύρια λειτουργία του είναι "Create zip files via an easy-to-use UI right in your browser!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ZIP Writer

Λήψη αρχείων επέκτασης ZIP Writer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ZIP Writer extension helps you easily convert your file(s) to a single compressed file (.zip).

Simply drag & drop files to a designated area in the app UI (top section). All the uploaded files will be listed in the UI. You can now click on the - Zip & Download - button to download the ZIP file to your system (default download location). There is also a reload button at the top-right corner in the app UI. Clicking on this button will reload the app and reset all active operations. If you want to zip multiple files, please drag & drop them altogether in the app (top section). It is also recommended to reload the UI after each zip operation.

Note 1: this add-on is only designed to make compressed zip files. If you want to extract a zip folder (unzip), please install my other add-on: ZIP Reader (https://chrome.google.com/webstore/detail/zip-reader/hppjaadfhhgadeokjndmbnjnegagcadd)

Note 2: this add-on is using an open-source JavaScript library for the zip operation. You can get more info about this library here: https://github.com/gildas-lormeau/zip.js

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

Βασικές Πληροφορίες Επέκτασης

Όνομα ZIP Writer ZIP Writer
ID jgomnenddgimfbmbhoggoodhpdciaedd
Επίσημο URL https://chromewebstore.google.com/detail/zip-writer/jgomnenddgimfbmbhoggoodhpdciaedd
Περιγραφή Create zip files via an easy-to-use UI right in your browser!
Μέγεθος Αρχείου 97.44 KB
Αριθμός Εγκαταστάσεων 331
Τρέχουσα Έκδοση 0.1.6
Τελευταία Ενημέρωση 2022-04-05
Ημερομηνία Δημοσίευσης 2020-01-09
Προγραμματιστής loora
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://mybrowseraddon.com/zip-maker.html
Διεύθυνση URL της Σελίδας Βοήθειας https://mybrowseraddon.com/zip-maker.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.6",
    "name": "ZIP Writer",
    "manifest_version": 3,
    "offline_enabled": true,
    "short_name": "zip-maker",
    "optional_permissions": [
        "downloads"
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/zip-maker.html",
    "description": "Create zip files via an easy-to-use UI right in your browser!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "ZIP Writer",
        "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"
    }
}