Improve your Facebook (by Lapzor)
This extension hides 'like' notifications on Facebook and lets you disable some of the UI. Not created nor endorsed by Facebook.
Improve your Facebook (by Lapzor)란 무엇입니까?
Improve your Facebook (by Lapzor)은(는) https://lapzor.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension hides 'like' notifications on Facebook and lets you disable some of the UI. Not created nor endorsed by Facebook."입니다.
확장 프로그램 스크린샷
Improve your Facebook (by Lapzor) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is not created nor endorsed by Facebook. Declutter your Facebook experience by allowing you to turn off some unneeded features, especially: - disable the homepage feed - disable notifications for likes and for "someone has posted in this group" - Remove the right sidebar - Auto-hide the chat bar on the right - Remove the like button itself - More features will be added by request :) Good for blocking sources of dark dopamine and also useful for those who manage Facebook groups since it removes the irrelevant like notifications so you can focus just on pending posts and replies.
확장 프로그램 기본 정보
이름 | Improve your Facebook (by Lapzor) |
ID | jndjnddhhgjcjldjiiboanjobljgmeid |
공식 URL | https://chrome.google.com/webstore/detail/improve-your-facebook-by/jndjnddhhgjcjldjiiboanjobljgmeid |
설명 | This extension hides 'like' notifications on Facebook and lets you disable some of the UI. Not created nor endorsed by Facebook. |
파일 크기 | 164 KB |
설치 횟수 | 37 |
현재 버전 | 1.7 |
최근 업데이트 | 2019-05-28 |
출시 날짜 | 2019-05-28 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | https://lapzor.com |
이메일 | [email protected] |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Improve your Facebook (by Lapzor)", "description": "This extension hides 'like' notifications on Facebook and lets you disable some of the UI. Not created nor endorsed by Facebook.", "version": "1.7", "options_page": "html\/options.html", "icons": { "48": "icon_on_48.png", "128": "icon_128.png" }, "page_action": { "default_title": "Facebook Improver", "default_icon": "icon_on_48.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.facebook.com\/*", "https:\/\/web.facebook.com\/*" ], "js": [ "js\/main.js" ], "run_at": "document_start" } ], "permissions": [ "https:\/\/www.facebook.com\/*", "https:\/\/web.facebook.com\/*", "storage" ], "web_accessible_resources": [ "css\/fix.css", "css\/hidefeed.css", "css\/hidelikes.css", "css\/hidesidebar.css", "css\/hidechat.css", "css\/hidepinned.css", "css\/hidebanner.css", "css\/hidelikebutton.css" ] } |