Comics Downloader
Download comic books!
Was ist Comics Downloader?
Comics Downloader ist eine Chrome-Erweiterung, die von ruflashist entwickelt wurde, und ihr Hauptmerkmal ist "Download comic books!".
Erweiterungsscreenshots
Comics Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Comics Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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).
Grundlegende Informationen zur Erweiterung
Name | Comics Downloader |
ID | kppcdcpdknadnfdblpnknkpejminjlfn |
Offizielle URL | https://chromewebstore.google.com/detail/comics-downloader/kppcdcpdknadnfdblpnknkpejminjlfn |
Beschreibung | Download comic books! |
Dateigröße | 160 KB |
Installationsanzahl | 3,135 |
Aktuelle Version | 1.4 |
Letztes Update | 2021-05-01 |
Veröffentlichungsdatum | 2019-10-12 |
Bewertung | 3.24/5 Insgesamt 46 Bewertungen |
Entwickler | ruflashist |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |