Hide Facebook Likes
Hide other people's likes from your Facebook for a better experience.
Hide Facebook Likes란 무엇입니까?
Hide Facebook Likes은(는) Pranay M에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide other people's likes from your Facebook for a better experience."입니다.
확장 프로그램 스크린샷
Hide Facebook Likes 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension lets a user hide the number of likes while scrolling through Facebook. Users can choose to hide just the like number, and keep the reacts (heart, angry react, etc). When you're done, just click on the icon in the top right corner to unhide the likes.
확장 프로그램 기본 정보
이름 | Hide Facebook Likes |
ID | gbblbfjkpgmkiebfgcddokfmbdldbcoj |
공식 URL | https://chromewebstore.google.com/detail/hide-facebook-likes/gbblbfjkpgmkiebfgcddokfmbdldbcoj |
설명 | Hide other people's likes from your Facebook for a better experience. |
파일 크기 | 64.36 KB |
설치 횟수 | 22 |
현재 버전 | 1.1 |
최근 업데이트 | 2018-12-27 |
출시 날짜 | 2018-12-27 |
개발자 | Pranay M |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Facebook Likes", "version": "1.1", "description": "Hide other people's likes from your Facebook for a better experience.", "permissions": [ "*:\/\/*.facebook.com\/*", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "js": [ "jquery-3.3.1.min.js", "content.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" }, "browser_action": { "default_icon": "icons\/icon16.png", "default_title": "Hide Facebook Likes", "default_popup": "popup.html" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false } } |