YPixiv

Pixiv downloader

YPixiv란 무엇입니까?

YPixiv은(는) Radzi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pixiv downloader"입니다.

확장 프로그램 스크린샷

screenshot

YPixiv 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Art downloader, which sorts and downloads art from Pixiv: images, ugoiras, mangas and artists whole.
Updates:
--0.50 (2021.08.28) Fixed bug with creating ".webm"; library "whammy" changed to "webm writer js"; added debug mode; code refactoring.
--0.49 (2021.06.16) Fixed bug with chars 65532-65535.
--0.48 (2020.09.10) Fixed bug with permission "*://*/*" (removed).
--0.47 (2020.09.07) Updated for new Chrome changes. Added permissions "webRequest" ,"webRequestBlocking", "*://*/*"; added a mechanism to bypass the error, when GET returns without "Access-Control-Allow-Origin".
--0.46 (2020.03.11) Bugfix: permission "declarativeContent" returned.
--0.45 (2020.03.06) Updated for new Pixiv changes. Some updates of pixiv-site appears at different rates in different regions, the difference can be up to a few weeks sometimes. Sorry for the delay.
--0.44 (2020.01.17) Bugfix.
--0.43 (2020.01.11) Updated for new Pixiv changes.
--0.42 (2019.09.26) Updated for new Pixiv changes.
--0.41 (2019.07.01) Bugfix.
--0.40 (2019.05.17) Bugfix.
--0.39 (2019.05.11) Now you can load from more than one tab at a once.
--0.38 (2019.04.07) Updated "danger symbols" list.
--0.37 (2019.02.10) Maximum webm's cluster length changed to 200 ms.
--0.36 (2019.02.10) Fixed bug with name of art with element "Submissions based on this work".
--0.35 (2019.02.04) Updated "danger symbols" list.
--0.34 (2019.01.26) "~" added to "danger symbols", fixed bug with art in "private" and "My pixiv only".
--0.33 (2019.01.26) Fixed bug with webm last frame.
--0.32 (2019.01.24) Little optimization (downloader + webm).
--0.31 (2019.01.23) Inner code-design changes + history clear option.
--0.30 (2019.01.22) Added ugoira .gif and .webm convectors, optimized subfolder textbox, small local chanches. Do not forget to press "Reset" button and set options again if you are already YPixiv-user.
--0.29 (2019.01.20) The design changed a bit.
--0.28 (2019.01.19) Fixed bugs with ugoira-zip size and art names.
--0.27 (2018.09.21) Updated for new Pixiv changes.
--0.26 (2018.09.20) Fixed descriptions.
--0.25 (2018.09.13) The download type "all at once" has been changed to the "queue", one thread, this removes the risk of skipping files when you are using internet actively. Added new numbering mode: "extra nulls", example - in the parameter's description.
--0.24 (2018.09.12) Fix names again.
--0.23 (2018.09.11) Fix art's and autor's names.
--0.22 (2018.08.02) Added new "Thanks" option.
--0.21 (2018.06.24) Fixed bugs with album size and autor id.
--0.20 (2018.06.15) Updated for new Pixiv changes.
--0.19 (2018.04) Fixed mistake with master1200, now it's real 1200, not 600.
--0.18 (2018.04) Removed some bugs with download end message.
--0.17 (2018.04) Added message of download end and image size option.                    

확장 프로그램 기본 정보

이름 YPixiv YPixiv
ID nlfpnjjmniapblhoapfiiekalncldeah
공식 URL https://chromewebstore.google.com/detail/ypixiv/nlfpnjjmniapblhoapfiiekalncldeah
설명 Pixiv downloader
파일 크기 163 KB
설치 횟수 372
현재 버전 0.50
최근 업데이트 2021-08-29
출시 날짜 2020-03-11
평점 4.17/5 총 23 개의 평점
개발자 Radzi
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "src\/background.js",
            "src\/options.js",
            "src\/extra.js"
        ]
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Y",
                "mac": "Command+Shift+Y"
            }
        }
    },
    "content_scripts": [
        {
            "js": [
                "libraries\/jszip.js",
                "libraries\/jsgif\/GIFEncoder.js",
                "libraries\/jsgif\/LZWEncoder.js",
                "libraries\/jsgif\/NeuQuant.js",
                "libraries\/webm-writer-js\/ArrayBufferDataStream.js",
                "libraries\/webm-writer-js\/BlobBuffer.js",
                "libraries\/webm-writer-js\/WebMWriter.js",
                "src\/pixiv\/content.js",
                "src\/pixiv\/ugoira.js",
                "src\/extra.js"
            ],
            "matches": [
                "*:\/\/www.pixiv.net\/*"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon_128.png",
        "48": "icons\/icon_48.png"
    },
    "manifest_version": 2,
    "name": "YPixiv",
    "short_name": "YPixiv",
    "description": "Pixiv downloader",
    "options_ui": {
        "chrome_style": true,
        "page": "src\/options.html"
    },
    "page_action": {
        "default_icon": "icons\/icon_128.png"
    },
    "permissions": [
        "notifications",
        "downloads",
        "storage",
        "*:\/\/www.pixiv.net\/*",
        "*:\/\/i.pximg.net\/*",
        "declarativeContent",
        "webRequest",
        "webRequestBlocking"
    ],
    "version": "0.50"
}