Clean feed
Remove all social interactions informations on facebook wall.
Clean feed란 무엇입니까?
Clean feed은(는) Laurent Berthelot에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove all social interactions informations on facebook wall."입니다.
확장 프로그램 스크린샷
Clean feed 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Remove all social interactions stuff from Facebook : - Hide "like", "comment" & "share" buttons on timeline. - Hide all comments on timeline. - Hide the name of publishers on timeline. - Hide "Friends activity" on right sidebar. Increase your productivity, increase your monitoring quality : - Straight to the point / focus on contents published by friends, companies, FB pages, etc. - Stop wasting time by reading no relevant stuffs. - Change the way you considers post from your friends or companies. Toggle "on/off" functionality. /!\ After installing the extension, close all Facebook tabs and relaunch one, wait few seconds for the first initialization.
확장 프로그램 기본 정보
이름 | Clean feed |
ID | efladpoendbckpfaecbojpbeobmkjcna |
공식 URL | https://chromewebstore.google.com/detail/clean-feed/efladpoendbckpfaecbojpbeobmkjcna |
설명 | Remove all social interactions informations on facebook wall. |
파일 크기 | 84.92 KB |
설치 횟수 | 917 |
현재 버전 | 0.21 |
최근 업데이트 | 2015-04-24 |
출시 날짜 | 2015-04-24 |
평점 | 2.75/5 총 28 개의 평점 |
개발자 | Laurent Berthelot |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.especedepetitefille.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clean feed", "version": "0.21", "background": { "scripts": [ "background.js" ] }, "permissions": [ "storage", "activeTab" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'; ", "description": "Remove all social interactions informations on facebook wall.", "icons": { "16": "icon-16x16.png", "48": "icon-48x48.png", "128": "icon-128x128.png" }, "browser_action": { "default_icon": { "19": "icon-19x19.png", "16": "icon-16x16.png", "48": "icon-48x48.png", "128": "icon-128x128.png" }, "default_title": "Clean feed", "badge": "on" }, "content_scripts": [ { "js": [ "jquery-2.1.1.min.js", "fb_like_remover.js" ], "matches": [ "http:\/\/www.facebook.com\/*", "https:\/\/www.facebook.com\/*" ], "run_at": "document_end" } ] } |