Feed Cleaner
Clean your social network news feed from suggested posts and ads
Feed Cleaner란 무엇입니까?
Feed Cleaner은(는) Arik W에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Clean your social network news feed from suggested posts and ads"입니다.
확장 프로그램 스크린샷
Feed Cleaner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Keep those suggested posts and ads out of your social network news feed. Which social network? Say "Phase-book" out loud 3 times. The suggested posts and ads will collapse into a minimal row, allowing you to take a peek with a single click. Your privacy is our top priority. We do not send any data to any server. Period. News Feed Cleaner - Take control on your social network.
확장 프로그램 기본 정보
이름 | |
ID | jdmiahadpnljimfcnfaebjggbfkjkgan |
공식 URL | https://chrome.google.com/webstore/detail/feed-cleaner/jdmiahadpnljimfcnfaebjggbfkjkgan |
설명 | Clean your social network news feed from suggested posts and ads |
파일 크기 | 82.2 KB |
설치 횟수 | 68 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2017-05-08 |
출시 날짜 | 2017-05-08 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Arik W |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Feed Cleaner", "manifest_version": 2, "version": "1.0.1", "content_scripts": [ { "matches": [ "*:\/\/www.facebook.com\/*" ], "js": [ "vendor\/jquery-1.11.3.min.js", "defaults.js", "main.js" ], "run_at": "document_start", "all_frames": false, "css": [] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png", "256": "images\/icon256.png" }, "browser_action": { "default_icon": "images\/icon48.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "defaults.js", "background.js" ] }, "permissions": [ "storage" ], "incognito": "split", "web_accessible_resources": [ "images\/icon256.png", "images\/chevron-d.png", "images\/chevron-r.png" ], "description": "Clean your social network news feed from suggested posts and ads" } |