Pixiv Image Overlay

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

¿Qué es Pixiv Image Overlay?

Pixiv Image Overlay es una extensión de Chrome desarrollada por Kurosagi, y su función principal es "Adds an overlay to have a better UI to view images on Pixiv".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Pixiv Image Overlay

Descarga archivos de extensión Pixiv Image Overlay en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Pixiv Image Overlay Pixiv Image Overlay
ID gkgednhbigllgbienlgmfflijoaalpcg
URL Oficial https://chrome.google.com/webstore/detail/pixiv-image-overlay/gkgednhbigllgbienlgmfflijoaalpcg
Descripción Adds an overlay to have a better UI to view images on Pixiv
Tamaño del Archivo 409 KB
Cantidad de Instalaciones 33
Versión Actual 2.0.0
Última Actualización 2022-01-07
Fecha de Publicación 2021-04-05
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Kurosagi
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Hanasagi/PixivImageOverlay
Idiomas Soportados 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'"
}