JoyReactor Improved - Post Minimizer

Returns the expanded long-post to a compact state.

JoyReactor Improved - Post Minimizer là gì?

JoyReactor Improved - Post Minimizer là một tiện ích mở rộng Chrome được phát triển bởi melserval, và tính năng chính của nó là "Returns the expanded long-post to a compact state.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng JoyReactor Improved - Post Minimizer

Tải xuống các tệp mở rộng JoyReactor Improved - Post Minimizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên JoyReactor Improved - Post Minimizer JoyReactor Improved - Post Minimizer
ID iogcolplgieloplkihhdcipapeggpfja
URL Chính Thức https://chromewebstore.google.com/detail/joyreactor-improved-post/iogcolplgieloplkihhdcipapeggpfja
Mô tả Returns the expanded long-post to a compact state.
Kích Thước Tệp 14.29 KB
Số Lần Cài Đặt 108
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-04-22
Ngày Phát Hành 2023-04-22
Nhà Phát Triển melserval
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}