Pixiv Image Overlay
Adds an overlay to have a better UI to view images on Pixiv
Pixiv Image Overlayとは何ですか?
Pixiv Image OverlayはKurosagiによって開発されたChromeの拡張機能で、その主な機能は「Adds an overlay to have a better UI to view images on Pixiv」です。
拡張機能のスクリーンショット
Pixiv Image Overlay拡張機能のCRXファイルをダウンロード
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
拡張機能の基本情報
名前 | |
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 |
Eメール | [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'" } |