Less Distracting Reddit
Kill Reddit front page + other features to make Reddit a little less distracting.
Less Distracting Reddit란 무엇입니까?
Less Distracting Reddit은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Kill Reddit front page + other features to make Reddit a little less distracting."입니다.
확장 프로그램 스크린샷
Less Distracting Reddit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Hide various features of Reddit in order to hopefully make your stay as short as you originally intended. No matter which options you choose, you'll still be able to read posts and their comments. This avoids the annoying situation when you use a website blocker only to find that the useful information you're googling can be found only on Reddit. Features: - Works on both new and old Reddit - You can enable only the features you want - Hide front page - Hide r/all and r/popular - Hide browse page of all subreddits - Hide various distractors like "More posts from r/some community" or "Discussions in r/some" This addon is open source. The repository is hosted at https://github.com/jaksim/less-distracting-reddit. Suggestions and code contributions are welcome.
확장 프로그램 기본 정보
이름 | Less Distracting Reddit |
ID | ililagkodjpoopfjphagpamfhfbamppa |
공식 URL | https://chromewebstore.google.com/detail/less-distracting-reddit/ililagkodjpoopfjphagpamfhfbamppa |
설명 | Kill Reddit front page + other features to make Reddit a little less distracting. |
파일 크기 | 22.26 KB |
설치 횟수 | 148 |
현재 버전 | 0.5 |
최근 업데이트 | 2020-01-29 |
출시 날짜 | 2020-01-29 |
평점 | 3.80/5 총 5 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jaksim/less-distracting-reddit |
도움말 페이지 URL | https://github.com/jaksim/less-distracting-reddit |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Less Distracting Reddit", "version": "0.5", "description": "Kill Reddit front page + other features to make Reddit a little less distracting.", "icons": { "48": "img\/icon.png", "96": "img\/icon2x.png", "128": "img\/iconc.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/*" ], "js": [ "src\/UrlParser.js", "src\/kill.js" ] } ], "options_ui": { "open_in_tab": false, "page": "options\/options.html" }, "permissions": [ "storage" ] } |