CoronaBLOCK for Facebook
Take a break from Facebook posts related to COVID-19
CoronaBLOCK for Facebook란 무엇입니까?
CoronaBLOCK for Facebook은(는) https://aldiduzha.com/projects/coronablock에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take a break from Facebook posts related to COVID-19"입니다.
확장 프로그램 스크린샷
CoronaBLOCK for Facebook 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This project is open source and is available on Github. https://github.com/aldi/coronablock Take a break from Coronavirus/COVID-19 related Facebook posts. CoronaBLOCK helps you block effectively Facebook posts based on a curated list of hand-picked keywords related to coronavirus. Note: It works only οn Facebook. How it works: CoronaBLOCK scans in the background your Facebook feed for COVID-19 related posts and comments and removes them, based on a curated list of related keywords. Features: - Fast keyword search in the background without delays. - Fresh and Clean UI. Plain and Simple. - ON/OFF Switch. Disable it or enable it whenever you feel to. - See how many COVID-19 related posts CoronaBLOCK has blocked. - Supports both classic and new Facebook layout. Enjoy and don't forget to refresh the page before using it!
확장 프로그램 기본 정보
이름 | CoronaBLOCK for Facebook |
ID | mmlaobnmgfaidfhebeijbeehkdibpiae |
공식 URL | https://chromewebstore.google.com/detail/coronablock-for-facebook/mmlaobnmgfaidfhebeijbeehkdibpiae |
설명 | Take a break from Facebook posts related to COVID-19 |
파일 크기 | 374 KB |
설치 횟수 | 49 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2022-04-03 |
출시 날짜 | 2020-04-21 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | https://aldiduzha.com/projects/coronablock |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://aldiduzha.com/projects/coronablock |
도움말 페이지 URL | https://aldiduzha.com/projects/coronablock |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CoronaBLOCK for Facebook", "description": "Take a break from Facebook posts related to COVID-19", "author": "Aldi Duzha", "version": "1.2.1", "manifest_version": 2, "permissions": [ "*:\/\/*.facebook.com\/*", "activeTab", "storage" ], "browser_action": { "default_icon": "images\/icon48.png", "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "run_at": "document_start", "js": [ "js\/filters.js" ] } ] } |