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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'" } |