Comics Downloader
Download comic books!
什么是Comics Downloader?
Comics Downloader是由ruflashist开发的Chrome扩展程序,该扩展的主要功能是“Download comic books!”。
扩展截图
下载Comics Downloader扩展crx文件
下载Comics Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Was developed to download comics. Currently works only with the readcomiconline website.
How to:
- Open readcomiconline
- Find a comic book you would like to download
- Open the page with this comic book
- Press the Comics Downloader extension icon
- Wait
- Wait more
- Sometimes you have to wait quite a long time (though the progress is shown as percentage above the extension icon)
- Find the .cbz archive in the download folder
Feel free to leave a comment if something is good/bad about the way the extension works. Any feedback is appreciated!
Version 1.4:
- Make the extension work with different domains of the readcomiconline website.
Version 1.2:
- The archived comic books size is reduced by 5-8 times.
- Images saving format is changed to JPG (previously PNG). 扩展基本信息
| 名称 | |
| ID | kppcdcpdknadnfdblpnknkpejminjlfn |
| 官方URL | https://chromewebstore.google.com/detail/comics-downloader/kppcdcpdknadnfdblpnknkpejminjlfn |
| 简介 | Download comic books! |
| 文件大小 | 160 KB |
| 安装次数 | 3,135 |
| 当前版本 | 1.4 |
| 更新时间 | 2021-05-01 |
| 上架时间 | 2019-10-12 |
| 评分 | 3.24/5 共46次评分 |
| 开发者 | ruflashist |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Comics Downloader",
"version": "1.4",
"description": "Download comic books!",
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"notifications"
],
"background": {
"scripts": [
"libs\/FileSaver.js",
"libs\/jszip.js",
"background.js"
],
"persistent": false
},
"browser_action": [],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentScript.js"
]
}
],
"icons": {
"16": "images\/main_16.png",
"32": "images\/main_32.png",
"48": "images\/main_48.png",
"128": "images\/main_128.png"
},
"manifest_version": 2
} | |