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.”。
擴展截圖
下載JoyReactor Improved - Post Minimizer擴展crx文件
下載JoyReactor Improved - Post Minimizer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | iogcolplgieloplkihhdcipapeggpfja |
官方網址 | 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\/*" ] } ] } |