PIXIV Viewer

More easily view artist's works on PIXIV

PIXIV Viewer क्या है?

PIXIV Viewer HP Chen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "More easily view artist's works on PIXIV"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PIXIV Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        It is a Chrome extesnion for view illusts easily on PIXIV.

This extension can also download pictures easily.

## Feature

### View

1. Switch illusts by next and previous works buttons.
2. Change page by up and down page buttons in multiple mode.
3. Detail information.
4. Illust type.
5. Page number.

### Download

#### Single mode

Download bigger size image by download button.

#### Multiple mode

1. Download bigger size image by download button.
2. Download multiple images by multi-download button.

#### Animate mode

1. Download gif by download button.
2. Download multiple pictures by multi-download button.

## Version

* 1.0.1 (2014/11/11): Debug(1)
* 1.0.2 (2015/01/11): Debug(1)
* 1.1.0 (2015/03/15): Add bookmark, Fixed bug(1)
* 1.1.2(2017/11/06): Fixed bug(2)
* 1.2.0(2019/05/28): Update for new PIXIV web
* 1.2.1(2019/06/01): Fix GIF download issue
* 1.2.2(2019/06/03): Prevent from memory leak                    

एक्सटेंशन की मूल जानकारी

नाम PIXIV Viewer PIXIV Viewer
ID iennmgkhodlaphjanjeincjlolinlhng
आधिकारिक URL https://chromewebstore.google.com/detail/pixiv-viewer/iennmgkhodlaphjanjeincjlolinlhng
विवरण More easily view artist's works on PIXIV
फ़ाइल का आकार 113 KB
स्थापना संख्या 1,173
वर्तमान संस्करण 1.2.2
अंतिम अपडेट 2019-06-04
प्रकाशन तिथि 2019-06-04
रेटिंग 2.86/5 कुल 22 रेटिंग्स
डेवलपर HP Chen
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "HP Chen",
    "name": "PIXIV Viewer",
    "version": "1.2.2",
    "description": "More easily view artist's works on PIXIV",
    "icons": {
        "16": "image\/icons\/PIXIVViewer16.png",
        "32": "image\/icons\/PIXIVViewer32.png",
        "48": "image\/icons\/PIXIVViewer48.png",
        "128": "image\/icons\/PIXIVViewer128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.pixiv.net\/*"
            ],
            "exclude_globs": [
                "*medium*",
                "*index*"
            ],
            "css": [
                "extension.css"
            ],
            "js": [
                "lib\/jquery-2.1.1.min.js",
                "lib\/patch-worker.js",
                "lib\/FileSaver.min.js",
                "lib\/jszip.min.js",
                "lib\/gif.js",
                "lib\/gif.worker.js",
                "extension.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "image\/*",
        "lib\/*"
    ],
    "permissions": [
        "https:\/\/*.pixiv.net\/*",
        "https:\/\/*.pximg.net\/"
    ]
}