HabroSanitizer for Habrahabr
HabroSanitizer hides posts in the feed written by unwanted authors or companies on Habr.com (habrahabr). Free, no ads, no telemetry.
HabroSanitizer for Habrahabr란 무엇입니까?
HabroSanitizer for Habrahabr은(는) drag13에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "HabroSanitizer hides posts in the feed written by unwanted authors or companies on Habr.com (habrahabr). Free, no ads, no telemetry."입니다.
확장 프로그램 스크린샷
HabroSanitizer for Habrahabr 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
HabroSanitizer removes posts on Habr.com using your personal ban list. Supports blocking by author, by blog name or hub name. It's opensource, ads and telemetry free.
확장 프로그램 기본 정보
이름 | HabroSanitizer for Habrahabr |
ID | gnbmgdpmmddeegooghfhjlchocllcgpc |
공식 URL | https://chromewebstore.google.com/detail/habrosanitizer-for-habrah/gnbmgdpmmddeegooghfhjlchocllcgpc |
설명 | HabroSanitizer hides posts in the feed written by unwanted authors or companies on Habr.com (habrahabr). Free, no ads, no telemetry. |
파일 크기 | 30.54 KB |
설치 횟수 | 139 |
현재 버전 | 2.7.3 |
최근 업데이트 | 2021-09-21 |
출시 날짜 | 2020-11-03 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | drag13 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Drag13/HabrSanitizer |
도움말 페이지 URL | https://github.com/Drag13/HabrSanitizer/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "drag13", "name": "HabroSanitizer for Habrahabr", "description": "HabroSanitizer hides posts in the feed written by unwanted authors or companies on Habr.com (habrahabr). Free, no ads, no telemetry.", "version": "2.7.3", "permissions": [ "storage" ], "icons": { "16": ".\/asset\/i16.png", "48": ".\/asset\/i48.png", "128": ".\/asset\/i128.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "https:\/\/habr.com\/*" ], "js": [ "sanitizer.js" ], "css": [ "styles\/content.css" ] } ], "browser_specific_settings": { "gecko": { "id": "{99a19d47-bbc0-4451-a0cc-51d182095ccd}", "strict_min_version": "53.0" } }, "minimum_chrome_version": "55.0" } |