Pixiv Image Overlay

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

Pixiv Image Overlayคืออะไร?

Pixiv Image Overlay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kurosagi และคุณลักษณะหลักของมันคือ "Adds an overlay to have a better UI to view images on Pixiv"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pixiv Image Overlay

ดาวน์โหลดไฟล์ส่วนขยาย 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'"
}