DoucheBlock for Twitter
Automatically block anyone with specific keywords in their Twitter bio.
DoucheBlock for Twitter란 무엇입니까?
DoucheBlock for Twitter은(는) https://oss.mobilefirst.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically block anyone with specific keywords in their Twitter bio."입니다.
확장 프로그램 스크린샷
DoucheBlock for Twitter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
DoucheBlock is like an ad blocker but for your Twitter timeline. It will automatically (or after confirmation) block people who use specific keywords in the Twitter bio. Currently DoucheBlock for Twitter comes with following awesome features: ✅ Automatic or manual blocking ✅ Customizable "trigger word" list ✅ Regex keyword matching ✅ Whitelist 🛡️ 100% privacy 🚫 no ads or tracking After installation setup your keywords then browse Twitter as before. The extension will pick up the current user identity on the fly and start watching your timeline for users who match your block criteria. DoucheBlock does not contain any tracking and does not interact with any 3rd party servers. DoucheBlock for Twitter is open source! View source code on Github: https://github.com/MobileFirstLLC/doucheblock PRIVACY ======= This extension runs on top of twitter web client. It runs 100% on the client. This extension includes no tracking, no analytics, no 3rd party servers and no remote code. Extension does not persist any personal information about user (everything is in runtime memory) and user preferences are cleared immediately and automatically on extension uninstall.
확장 프로그램 기본 정보
이름 | |
ID | eeledoologbepiegnccedjigjkblhmhi |
공식 URL | https://chromewebstore.google.com/detail/doucheblock-for-twitter/eeledoologbepiegnccedjigjkblhmhi |
설명 | Automatically block anyone with specific keywords in their Twitter bio. |
파일 크기 | 27.58 KB |
설치 횟수 | 1,042 |
현재 버전 | 1.3.1 |
최근 업데이트 | 2021-09-14 |
출시 날짜 | 2021-02-17 |
평점 | 3.61/5 총 23 개의 평점 |
개발자 | https://oss.mobilefirst.me |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/MobileFirstLLC/doucheblock |
도움말 페이지 URL | https://github.com/MobileFirstLLC/doucheblock/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "homepage_url": "https:\/\/github.com\/MobileFirstLLC\/doucheblock", "version": "1.3.1", "manifest_version": 2, "default_locale": "en", "minimum_chrome_version": "31", "permissions": [ "webRequest", "storage", "https:\/\/*.twitter.com\/*" ], "icons": { "128": "assets\/128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "exclude_globs": [ "https:\/\/twitter.com\/settings\/blocked\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": { "16": "assets\/16x16.png", "24": "assets\/24x24.png", "32": "assets\/32x32.png" }, "default_title": "__MSG_appName__" }, "incognito": "split", "options_page": "index.html" } |