JoyReactor Improved - Post Minimizer
Returns the expanded long-post to a compact state.
Co to jest JoyReactor Improved - Post Minimizer?
JoyReactor Improved - Post Minimizer to rozszerzenie Chrome opracowane przez melserval, a jego główną funkcją jest „Returns the expanded long-post to a compact state.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia JoyReactor Improved - Post Minimizer
Pobierz pliki rozszerzeń JoyReactor Improved - Post Minimizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | JoyReactor Improved - Post Minimizer |
ID | iogcolplgieloplkihhdcipapeggpfja |
Oficjalny URL | https://chromewebstore.google.com/detail/joyreactor-improved-post/iogcolplgieloplkihhdcipapeggpfja |
Opis | Returns the expanded long-post to a compact state. |
Rozmiar pliku | 14.29 KB |
Liczba instalacji | 108 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2023-04-22 |
Data Publikacji | 2023-04-22 |
Deweloper | melserval |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/*" ] } ] } |