Like Hider for Facebook

This browser extension hides likes and reactions from appearing in your Facebook notifications

Like Hider for Facebook란 무엇입니까?

Like Hider for Facebook은(는) Wesley Branton에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This browser extension hides likes and reactions from appearing in your Facebook notifications"입니다.

확장 프로그램 스크린샷

screenshot

Like Hider for Facebook 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Although it is a feature that many people have asked for, there is no way to stop likes and reactions on your posts and comments from displaying in your Facebook notifications. This browser extension does just that. De-clutter your notification window by getting rid of those pointless notifications about likes and reactions.

But why not take it a step further? A common theory is that social media can increase depression and can become addictive. This is due, in part, to the liking system used by social media platforms, which provides gratification that keeps you coming back.

This browser extension also can hide the likes and reactions counter from posts and comments. You can also disable the “Like” button from Facebook entirely.                    

확장 프로그램 기본 정보

이름 Like Hider for Facebook Like Hider for Facebook
ID kbhhjpklnokbmlmngceginlbgfjjmojk
공식 URL https://chromewebstore.google.com/detail/like-hider-for-facebook/kbhhjpklnokbmlmngceginlbgfjjmojk
설명 This browser extension hides likes and reactions from appearing in your Facebook notifications
파일 크기 88.13 KB
설치 횟수 103
현재 버전 5.1.3
최근 업데이트 2023-08-22
출시 날짜 2022-01-16
평점 4.50/5 총 4 개의 평점
개발자 Wesley Branton
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://addons.wesleybranton.com/addon/like-hider-for-facebook/
도움말 페이지 URL https://addons.wesleybranton.com/addon/like-hider-for-facebook/help
개인정보 보호 정책 페이지 URL https://addons.wesleybranton.com/privacy
지원되는 언어 en,lt
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "5.1.3",
    "description": "__MSG_extensionDescription__",
    "author": "Wesley Branton",
    "default_locale": "en",
    "icons": {
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "__MSG_extensionName__",
        "default_popup": "options\/options.html?type=popup"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*"
    ]
}