Facebook Feed Limiter
Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.
Facebook Feed Limiter란 무엇입니까?
Facebook Feed Limiter은(는) matija.marohnic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted."입니다.
Facebook Feed Limiter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Have you ever lost 4 hours scrolling through your Facebook news feed? There's a reason they call it infinite scroll. his magnificent Chrome extension limits it to 10 items, which is something you secretly always wanted. This only limits the news feed, not the feed of a specific profile or a custom feed. This extension consists of 5 lines of CSS based on the current markup on Facebook, which will occasionally change, but I'll do my best to catch up with the changes.
확장 프로그램 기본 정보
이름 | |
ID | ojjjmcajplpdmodbfdbehknejjdafnem |
공식 URL | https://chrome.google.com/webstore/detail/facebook-feed-limiter/ojjjmcajplpdmodbfdbehknejjdafnem |
설명 | Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted. |
파일 크기 | 4.85 KB |
설치 횟수 | 29 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2016-04-24 |
출시 날짜 | 2016-04-24 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | matija.marohnic |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/silvenon/fb-feed-limiter |
도움말 페이지 URL | https://github.com/silvenon/fb-feed-limiter |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Facebook Feed Limiter", "description": "Limits your Facebook News Feed to roughly 10 items, which is something that you secretly always wanted.", "version": "0.0.2", "page_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*" ], "css": [ "limiter.css" ], "js": [] } ], "permissions": [ "http:\/\/*.facebook.com\/", "https:\/\/*.facebook.com\/" ] } |