Nijie Downloader
Image downloader for nijie.info
What is Nijie Downloader?
Nijie Downloader is a Chrome extension developed by illustcollector, and its main feature is "Image downloader for nijie.info".
Extension Screenshots
Download Nijie Downloader Extension CRX File
Download Nijie Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Add a download button to the image page. Save filename is customizable. https://github.com/illustcollector/nijie-downloader
Extension Basic Information
Name | |
ID | bpbkpajafcjgmfplbaglgogihjbicfnn |
Official URL | https://chrome.google.com/webstore/detail/nijie-downloader/bpbkpajafcjgmfplbaglgogihjbicfnn |
Description | Image downloader for nijie.info |
File Size | 19.76 KB |
Installation Count | 2,000 |
Current Version | 1.1.1 |
Last Updated | 2021-11-03 |
Publish Date | 2020-03-23 |
Rating | 4.00/5 Total 8 Ratings |
Developer | illustcollector |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/illustcollector/nijie-downloader |
Supported Languages | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Nijie Downloader", "version": "1.1.1", "default_locale": "en", "description": "Image downloader for nijie.info", "permissions": [ "downloads", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/nijie.info\/view.php?id=*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "icons": { "128": "icon.png" } } |