Pixiv Toolkit

Download ugoira, illustrations, manga and novel on Pixiv, Pixiv Fanbox and Pixiv Comic.

Wat is Pixiv Toolkit?

Pixiv Toolkit is een Chrome-extensie ontwikkeld door Leo, en de belangrijkste functie is "Download ugoira, illustrations, manga and novel on Pixiv, Pixiv Fanbox and Pixiv Comic.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Pixiv Toolkit

Download Pixiv Toolkit-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        You can use this extension to convert the ugoira on Pixiv to GIF or WebM file, or pack the images of manga to download or save novel as epub.
You can also download images from Pixiv Comic and Pixiv Fanbox (Notice: You need to have access to the post or comic you want to download in order to download the resource).

You can feel free to open issue on GitHub if you have any questions.

There is a power Pixiv downloader Pixiv Omina has been released! It's easy to use and it has plenty features, you should give it a try.

Github:
Pixiv Toolkit: https://github.com/leoding86/webextension-pixiv-toolkit
Pixiv Omina: https://github.com/leoding86/pixiv-omina
----------------------------------------------
v5.5.3
Fix issue about download panel can't collapse when "Activate download panel automatically" setting is disabled;
Fix issue about Fanbox can't be opened when using Firefox;
Fix issue about extension can't take over downloads when using Firefox.

v5.5.2
Fix issue about non-free Fanbox work can't be downloaded;
Fix issue about downloaded filename is 'undefined' on Fanbox when the illustration rename setting is empty.

v5.5.1
Add download work on Pixiv Comic feature;
Add highlight on download button when download is complete;
Minor fixes.

v5.5.0
Add settings for changing the position and the style of download panel;
Add new novel rename tags, include series id, series order and series title;
Fix issue of overwriting the http headers multiple times.

v5.4.1
Fix issue about rename filename incorrectly when downloading invert selected images.

v5.4.0
Add diagnosis messages page, you can open it in "other" section of setting page;
Fix issue about the extension can't download anything when the extension takes over downloads;
Minor fixes.

v5.3.0
Add "Select All", "Unselect All" and "Select Invert" button in "SELECT & DL" dialog;
Add "Multiple downloads time gap" setting;
Fix issue about it can't download files in incognite mode when the setting "Allow extension takes over downloads" is enabled;
Fix issue about it can't download all files without zipping when the setting "Allow extension takes over downloads" is disabled;
Fix issue about cannot download second and later chunk in illustrations or mangas;
Minor fixes.

v5.2.1
Fix downloading issues;
Update "Create subdirectory" setting;
Minor fixes.

v5.2.0
Fix issue about download options;
Fix issue about download files to relative location;
Fix issue about pack single image to a zip file;
Add "Disable downloads shelf" setting;
Minor fixes.

v5.0.3
Fix issue about downloaded images will not be packed into a zip file when "Pack File" setting is enabled;
Fix issue about Fanbox download button is missing;
Fix issue about downloaded image of illustration which has only one image will be packed into a zip file when "Always pack" setting is enabled;
Fix issue about download behavior won't respect download relative location settings;
Fix issue about ffmpeg can't be loaded;
Minor fixes.

v5.0.2
Add a setting of enable pack images to a zip file or not;
Add FFmpeg as optional converter which convert ugoira to animiation;
Fix issue about download button can't be reachable when there're too many images displayed in image selection dialog;
🖐🐞.
----------------------------------------------
Please report bugs and tell me what you need. Thanks!                    

Basisinformatie over de Extensie

Naam Pixiv Toolkit Pixiv Toolkit
ID ajlcnbbeidbackfknkgknjefhmbngdnj
Officiële URL https://chromewebstore.google.com/detail/pixiv-toolkit/ajlcnbbeidbackfknkgknjefhmbngdnj
Beschrijving Download ugoira, illustrations, manga and novel on Pixiv, Pixiv Fanbox and Pixiv Comic.
Bestandsgrootte 919 KB
Aantal Installaties 123,382
Huidige Versie 5.5.3
Laatst Bijgewerkt 2022-03-06
Publicatiedatum 2020-07-05
Beoordeling 4.81/5 Totaal 1200 Beoordelingen
Ontwikkelaar Leo
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "lib\/pouchdb.min.js",
            "lib\/pouchdb.find.min.js",
            "backgrounds\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "__MSG_extName__",
        "default_popup": "popup_page\/index.html"
    },
    "short_name": "PTK",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "unlimitedStorage",
        "*:\/\/*.pixiv.net\/*",
        "*:\/\/*.pximg.net\/*",
        "*:\/\/*.techorus-cdn.com\/*",
        "*:\/\/*.fanbox.cc\/*"
    ],
    "optional_permissions": [
        "downloads",
        "downloads.shelf",
        "https:\/\/unpkg.com\/*"
    ],
    "web_accessible_resources": [
        "lib\/ffmpeg\/ffmpeg.min.js",
        "lib\/ffmpeg\/ffmpeg-core.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.pixiv.net\/*"
            ],
            "css": [
                "content_scripts\/static\/css\/app.css"
            ],
            "js": [
                "lib\/global.js",
                "lib\/vue.min.js",
                "lib\/vue-i18n.min.js",
                "lib\/locales.js",
                "lib\/handlebars-latest.js",
                "lib\/jszip\/jszip.js",
                "lib\/jszip\/jszip-utils.min.js",
                "lib\/js-epub-maker\/js-epub-maker.js",
                "lib\/gifjs\/gif.js",
                "lib\/whammy.js",
                "lib\/ffmpeg\/ffmpeg.min.js",
                "lib\/ffmpeg\/ffmpeg-core.js",
                "content_scripts\/app.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.fanbox.cc\/*"
            ],
            "css": [
                "content_scripts\/static\/css\/fanbox-cs.css"
            ],
            "js": [
                "lib\/global.js",
                "lib\/vue.min.js",
                "lib\/vue-i18n.min.js",
                "lib\/locales.js",
                "lib\/jszip\/jszip.js",
                "lib\/jszip\/jszip-utils.min.js",
                "content_scripts\/fanbox-cs.js"
            ]
        },
        {
            "matches": [
                "*:\/\/comic.pixiv.net\/viewer\/*"
            ],
            "css": [
                "content_scripts\/static\/css\/pixivcomic-cs.css"
            ],
            "js": [
                "lib\/global.js",
                "lib\/vue.min.js",
                "lib\/vue-i18n.min.js",
                "lib\/locales.js",
                "lib\/jszip\/jszip.js",
                "lib\/jszip\/jszip-utils.min.js",
                "content_scripts\/pixivcomic-cs.js"
            ]
        }
    ],
    "options_page": "options_page\/index.html",
    "version": "5.5.3",
    "version_name": "5.5.3"
}