JoyReactor Improved - Post Minimizer

Returns the expanded long-post to a compact state.

JoyReactor Improved - Post Minimizer란 무엇입니까?

JoyReactor Improved - Post Minimizer은(는) melserval에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Returns the expanded long-post to a compact state."입니다.

확장 프로그램 스크린샷

screenshot

JoyReactor Improved - Post Minimizer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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

Allows you to collapse an open long post at any time.

After expanding the post, it adds a button to the site, clicking on which will return the post to the minimized mode, and the page being viewed will return to the same (±) place where it was before the post was expanded. If the opening post is viewed to the end, the button will hide automatically.
In the extension settings, you can specify the location of this button - to the left or right of the post.                    

확장 프로그램 기본 정보

이름 JoyReactor Improved - Post Minimizer JoyReactor Improved - Post Minimizer
ID iogcolplgieloplkihhdcipapeggpfja
공식 URL https://chromewebstore.google.com/detail/joyreactor-improved-post/iogcolplgieloplkihhdcipapeggpfja
설명 Returns the expanded long-post to a compact state.
파일 크기 14.29 KB
설치 횟수 108
현재 버전 1.1.0
최근 업데이트 2023-04-22
출시 날짜 2023-04-22
개발자 melserval
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "default_locale": "en",
    "version": "1.1.0",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "manifest_version": 3,
    "icons": {
        "128": "icons\/icon-128.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "title": "__MSG_options_window_title__"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/joyreactor.cc\/*",
                "*:\/\/*.reactor.cc\/*"
            ],
            "js": [
                "content\/content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/joyreactor.cc\/*"
            ],
            "css": [
                "content\/joy.style.css"
            ]
        },
        {
            "matches": [
                "*:\/\/old.reactor.cc\/*"
            ],
            "css": [
                "content\/old.style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content\/img\/*.*"
            ],
            "matches": [
                "*:\/\/joyreactor.cc\/*",
                "*:\/\/*.reactor.cc\/*"
            ]
        }
    ]
}