Pixiv Image Overlay

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

Qu'est-ce que Pixiv Image Overlay ?

Pixiv Image Overlay est une extension Chrome développée par Kurosagi, et sa fonction principale est "Adds an overlay to have a better UI to view images on Pixiv".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Pixiv Image Overlay

Téléchargez les fichiers d'extension Pixiv Image Overlay au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Pixiv Image Overlay Pixiv Image Overlay
ID gkgednhbigllgbienlgmfflijoaalpcg
URL Officiel https://chrome.google.com/webstore/detail/pixiv-image-overlay/gkgednhbigllgbienlgmfflijoaalpcg
Description Adds an overlay to have a better UI to view images on Pixiv
Taille du Fichier 409 KB
Nombre d'Installations 33
Version Actuelle 2.0.0
Dernière Mise à Jour 2022-01-07
Date de Publication 2021-04-05
Évaluation 5.00/5 Total 1 Évaluations
Développeur Kurosagi
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Hanasagi/PixivImageOverlay
Langues Prises en Charge 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'"
}