JoyReactor Improved - Image Viewer

A better and more functional window for viewing images on JoyReactor.

JoyReactor Improved - Image Viewer란 무엇입니까?

JoyReactor Improved - Image Viewer은(는) melserval에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A better and more functional window for viewing images on JoyReactor."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

JoyReactor Improved - Image Viewer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This browser extension is for only for site old.reactor.cc and joyreactor.cc.

What does it do? - Changes the standard window of the JoyReaсtor site for viewing pictures to a more advanced one that allows the following:
1) correctly places the image within the window borders.
2) choice of viewing mode - in the browser window or full screen.
3) opening the image in its original size in full screen.
4) download an open image by clicking the button (You wanted this, right?)

Control:
Clicking on the picture in the list of posts will open it in the viewing window, if the cursor after that becomes a “plus”, then the picture can be viewed in its original size, then the second click will increase it to the maximum.

Download the image you are viewing - the down arrow button.

Open in full screen - button with arrows to the side, return as it was -
press the same button again, or escape on the keyboard.

Close the view window - click the button with a cross, or click outside the window (if the window is not full screen).                    

확장 프로그램 기본 정보

이름 JoyReactor Improved - Image Viewer JoyReactor Improved - Image Viewer
ID nfbhnnnfokpfbhlfioalinmfaggjjoia
공식 URL https://chromewebstore.google.com/detail/joyreactor-improved-image/nfbhnnnfokpfbhlfioalinmfaggjjoia
설명 A better and more functional window for viewing images on JoyReactor.
파일 크기 20.45 KB
설치 횟수 121
현재 버전 1.0.0
최근 업데이트 2023-04-21
출시 날짜 2023-04-10
평점 5.00/5 총 2 개의 평점
개발자 melserval
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "version": "1.0.0",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "manifest_version": 3,
    "icons": {
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/joyreactor.cc\/*",
                "*:\/\/*.reactor.cc\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content\/img\/*.*"
            ],
            "matches": [
                "*:\/\/joyreactor.cc\/*",
                "*:\/\/*.reactor.cc\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}