Reddit Liberation: Feed Blocker
Chrome extension to break the distraction loop of reddit, while still maintaining it's productive utility. works on old.reddit.com
Reddit Liberation: Feed Blocker란 무엇입니까?
Reddit Liberation: Feed Blocker은(는) https://henryz.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension to break the distraction loop of reddit, while still maintaining it's productive utility. works on old.reddit.com"입니다.
확장 프로그램 스크린샷
Reddit Liberation: Feed Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extension to block scrolling reddit feeds, while still allowing the user to directly go on reddit comment threads through third party links (e.g. google search, or a message from a friend). Comes with a whitelist system, which allows users to specify specific subreddits the user doesn't want to block, and a blacklist system, which allows users to specify subreddits to block completely (comment threads included). Purpose: Reddit has become ubiquitous in many of our lives. Which is why it's incredibly difficult to block the entire website with a generic website blocker. As reddit can be used for both productive and unproductive means, this app aims to eliminate the unproductive time sink elements of reddit (the infinite content cycle of feeds), and keep the productive elements (e.g. finding answers through a link given by google search, or a whitelisted subreddit). This app aims to lower or eliminate time wasted by reddit in a smarter way than attempting to block it outright. I am looking to always improve the app, so any feedback is welcome.
확장 프로그램 기본 정보
이름 | Reddit Liberation: Feed Blocker |
ID | fllfmdjhnhhjokhdifhcdbpbfajfnhon |
공식 URL | https://chromewebstore.google.com/detail/reddit-liberation-feed-bl/fllfmdjhnhhjokhdifhcdbpbfajfnhon |
설명 | Chrome extension to break the distraction loop of reddit, while still maintaining it's productive utility. works on old.reddit.com |
파일 크기 | 23.03 KB |
설치 횟수 | 912 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2023-03-07 |
출시 날짜 | 2021-11-25 |
평점 | 4.91/5 총 11 개의 평점 |
개발자 | https://henryz.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://henryz.dev/ |
개인정보 보호 정책 페이지 URL | https://hz757.github.io/PortfolioWebsite/privacypolicy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Liberation: Feed Blocker", "description": "Chrome extension to break the distraction loop of reddit, while still maintaining it's productive utility. works on old.reddit.com", "version": "1.0.3", "manifest_version": 3, "action": { "default_icon": { "16": "\/images\/extension_icon16.png", "32": "\/images\/extension_icon32.png", "48": "\/images\/extension_icon48.png", "128": "\/images\/extension_icon128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.reddit.com\/*" ], "css": [ "my-styles.css" ], "js": [ "content-script.js" ] } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "icons": { "16": "\/images\/extension_icon16.png", "32": "\/images\/extension_icon32.png", "48": "\/images\/extension_icon48.png", "128": "\/images\/extension_icon128.png" } } |