ZIP Reader
View & extract any zip file via an easy-to-use UI right in your browser!
什麼是ZIP Reader?
ZIP Reader是由loora開發的Chrome擴展程式,該擴展的主要功能是“View & extract any zip file via an easy-to-use UI right in your browser!”。
擴展截圖
下載ZIP Reader擴展crx文件
下載ZIP Reader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
ZIP Reader is an extension that helps you easily unzip a compressed file. Simply drag & drop a zipped file to a designated area in the app UI (top section). All the zip content will be listed in the UI. You can download each individual file by clicking on it or download all files to a single folder. Note 1: this add-on is only designed for "reading" a ZIP file. For the inverse operation (zip a folder), you need to use a different application. There is also a reload button at the top left corner in the app UI. Clicking on this button will reload the app. If you want to extract multiple zip files, please do this one by one. It is also recommended to reload the UI after each unzips operation. Note 2: this add-on is using an open-source JavaScript library for the unzip operation. You can get more info about this library here: https://github.com/gildas-lormeau/zip.js If you see any bug or have a feature request in mind, please fill the bug report form on the add-on's homepage (https://mybrowseraddon.com/zip-reader.html).
擴展基本資訊
名稱 | ZIP Reader |
ID | hppjaadfhhgadeokjndmbnjnegagcadd |
官方網址 | https://chromewebstore.google.com/detail/zip-reader/hppjaadfhhgadeokjndmbnjnegagcadd |
簡介 | View & extract any zip file via an easy-to-use UI right in your browser! |
檔案大小 | 107 KB |
安裝次數 | 11,806 |
目前版本 | 0.1.6 |
更新時間 | 2023-11-13 |
上架時間 | 2020-01-09 |
評分 | 3.78/5 共 9 次評分 |
開發者 | loora |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://mybrowseraddon.com/zip-reader.html |
說明頁面URL | https://mybrowseraddon.com/zip-reader.html |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.6", "name": "ZIP Reader", "manifest_version": 3, "offline_enabled": true, "optional_permissions": [ "downloads" ], "permissions": [ "storage", "contextMenus" ], "homepage_url": "https:\/\/mybrowseraddon.com\/zip-reader.html", "description": "View & extract any zip file via an easy-to-use UI right in your browser!", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "ZIP Reader", "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" } } |