Feed Filter
Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…
Feed Filter란 무엇입니까?
Feed Filter은(는) Maker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…"입니다.
확장 프로그램 스크린샷
Feed Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used to delete the post with specific keywords you want or it can show you a post with the keywords you want to see.
확장 프로그램 기본 정보
이름 | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
공식 URL | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
설명 | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
파일 크기 | 469 KB |
설치 횟수 | 81 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2021-05-11 |
출시 날짜 | 2021-05-11 |
개발자 | Maker |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://automatics.one/privacy |
지원되는 언어 | en |
manifest.json | |
{ "name": "Feed Filter", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.1", "description": "", "manifest_version": 2, "incognito": "split", "icons": { "128": "icons\/128.png" }, "browser_action": { "default_icon": "icons\/128.png", "default_popup": "popup\/popup.html" }, "background": { "persistent": true, "page": "background\/background.html" }, "permissions": [ "storage", "cookies", "notifications", "*:\/\/*.facebook.com\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*.facebook.com\/" ], "js": [ "scripts\/content_script.js", "scripts\/jquery.js" ] } ] } |