Faceblock
Block Facebook posts about stuff you don't like
Faceblock란 무엇입니까?
Faceblock은(는) Oleś Gergun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block Facebook posts about stuff you don't like"입니다.
확장 프로그램 스크린샷
Faceblock 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Faceblock is an extension for Google Chrome that blocks posts about stuff you don't like in your Facebook Newsfeed. Add a name of a politician, pop star or somebody else you are annoyed reading about — and you won't see any more posts mentioning them. The program shows you how many posts of a given keyword were removed and how many were blocked in general. Also, it's easy to manage a block list and turn Faceblock off and on from the user interface. (Please reload your Facebook page after install) Have a great time! :)
확장 프로그램 기본 정보
이름 | |
ID | aljnhamaajogdndmfnedoodpoofadkph |
공식 URL | https://chrome.google.com/webstore/detail/faceblock/aljnhamaajogdndmfnedoodpoofadkph |
설명 | Block Facebook posts about stuff you don't like |
파일 크기 | 2.52 MB |
설치 횟수 | 72 |
현재 버전 | 2.1 |
최근 업데이트 | 2021-03-13 |
출시 날짜 | 2016-03-23 |
평점 | 4.60/5 총 5 개의 평점 |
개발자 | Oleś Gergun |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Faceblock", "version": "2.1", "manifest_version": 2, "offline_enabled": true, "description": "Block Facebook posts about stuff you don't like", "icons": { "16": "icons\/16x16.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "browser_action": { "default_icon": { "19": "icons\/19x19.png", "38": "icons\/38x38.png" }, "default_title": "Faceblock", "default_popup": "browseraction\/popup.html" }, "permissions": [ "storage", "debugger", "webNavigation" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*" ], "js": [ "content.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com 'unsafe-eval'; object-src 'self';" } |