Pixiv Image Overlay

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

Pixiv Image Overlay là gì?

Pixiv Image Overlay là một tiện ích mở rộng Chrome được phát triển bởi Kurosagi, và tính năng chính của nó là "Adds an overlay to have a better UI to view images on Pixiv".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pixiv Image Overlay

Tải xuống các tệp mở rộng Pixiv Image Overlay dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pixiv Image Overlay Pixiv Image Overlay
ID gkgednhbigllgbienlgmfflijoaalpcg
URL Chính Thức https://chrome.google.com/webstore/detail/pixiv-image-overlay/gkgednhbigllgbienlgmfflijoaalpcg
Mô tả Adds an overlay to have a better UI to view images on Pixiv
Kích Thước Tệp 409 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2022-01-07
Ngày Phát Hành 2021-04-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Kurosagi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Hanasagi/PixivImageOverlay
Ngôn Ngữ Được Hỗ Trợ 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'"
}