Pixiv Image Overlay

Adds an overlay to have a better UI to view images on Pixiv

什么是Pixiv Image Overlay?

Pixiv Image Overlay是由Kurosagi开发的Chrome扩展程序,该扩展的主要功能是“Adds an overlay to have a better UI to view images on Pixiv”。

扩展截图

screenshot

下载Pixiv Image Overlay扩展crx文件

下载Pixiv Image Overlay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Add an overlay to a pixiv artworks page when there is more than one picture to see. The overlay let you use arrow and click instead of scrolling to see all the images.

Usable shortcut :
Echap to close the overlay
Left/right arrow to load next or previous image
Click left or right of the image to load next or previous image
Click on the thumbnail of the image you want to see on the left to load it
P to private bookmark                    

扩展基本信息

名称 Pixiv Image Overlay Pixiv Image Overlay
ID gkgednhbigllgbienlgmfflijoaalpcg
官方URL https://chrome.google.com/webstore/detail/pixiv-image-overlay/gkgednhbigllgbienlgmfflijoaalpcg
简介 Adds an overlay to have a better UI to view images on Pixiv
文件大小 409 KB
安装次数 33
当前版本 2.0.0
更新时间 2022-01-07
上架时间 2021-04-05
评分 5.00/5 共1次评分
开发者 Kurosagi
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Hanasagi/PixivImageOverlay
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.0.0",
    "name": "__MSG_extName__",
    "description": "Adds an overlay to have a better UI to view images on Pixiv",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "webNavigation"
    ],
    "background": {
        "all_frames": false,
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/32.png",
        "128": "icons\/150.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "https:\/\/www.pixiv.net\/*\/artworks\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "css": [
                "css\/content-script.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/32.png"
        }
    },
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}