Pixiv Image Overlay
Adds an overlay to have a better UI to view images on Pixiv
Pixiv Image Overlay क्या है?
Pixiv Image Overlay Kurosagi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds an overlay to have a better UI to view images on Pixiv"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pixiv Image Overlay एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | |
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'" } |