Reddit Minimizer
Ever clicked a link and went back only to lose the comment you were reading due to uncollapsed comments. This keeps them minimized!
Reddit Minimizer란 무엇입니까?
Reddit Minimizer은(는) https://redditmanager.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Ever clicked a link and went back only to lose the comment you were reading due to uncollapsed comments. This keeps them minimized!"입니다.
확장 프로그램 스크린샷
Reddit Minimizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🏆🏆WELCOME🏆🏆 ☑ Keep minimized comments minimized on Reddit ☑ Efficient doesn't run in background ☑ Doesn't leak or store private info ☑ Small takes less 9kb ☑ Makes your life tad bit easier :D Tell me if this has happened to you, you are reading comments, minimizing/collapsing them to get them out of the way and sooner or later you find a link, you click that link.. and once you return all comments have expanded, and now you have to find the comment you were reading before you clicked. "Reddit Minimizer" fixes that. It remembers what you have minimized and keep them minimized on navigating back. 🙌🙌🙌🙌🙌🙌🙌🙌
확장 프로그램 기본 정보
이름 | Reddit Minimizer |
ID | kkogipaajcmahmogohobknenfnclcdpk |
공식 URL | https://chromewebstore.google.com/detail/reddit-minimizer/kkogipaajcmahmogohobknenfnclcdpk |
설명 | Ever clicked a link and went back only to lose the comment you were reading due to uncollapsed comments. This keeps them minimized! |
파일 크기 | 11.38 KB |
설치 횟수 | 36 |
현재 버전 | 1.0 beta |
최근 업데이트 | 2017-08-14 |
출시 날짜 | 2017-08-14 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | https://redditmanager.com |
결제 유형 | free |
도움말 페이지 URL | https://redditmanager.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit Minimizer", "version": "1.0.0", "description": "Ever clicked a link and went back only to lose the comment you were reading due to uncollapsed comments. This keeps them minimized!", "icons": { "128": "icon_128.png", "48": "icon_48.png", "16": "icon_16.png" }, "browser_action": { "default_icon": { "32": "icon_32.png" } }, "author": "techsin", "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.reddit.com\/*" ], "js": [ "script.js" ] } ], "incognito": "split", "offline_enabled": true, "version_name": "1.0 beta" } |