Facebook Clarity: Remove Suggested Posts

A simple extension to remove suggested posts from Facebook.

Facebook Clarity: Remove Suggested Posts란 무엇입니까?

Facebook Clarity: Remove Suggested Posts은(는) Eric Tron에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple extension to remove suggested posts from Facebook."입니다.

확장 프로그램 스크린샷

screenshot

Facebook Clarity: Remove Suggested Posts 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Facebook Clarity: Remove Suggested Posts

Description:
Facebook Clarity: Remove Suggested Posts is an browser extension designed to enhance your online experience by removing suggested posts from Facebook

Key Features:
User-Controlled Experience: With a simple ON/OFF toggle button, users can effortlessly activate or deactivate the extension as per their browsing needs.

Detection of five languages: English, Italian, German, French, and Spanish.

Getting Started:
Getting started with Facebook Clarity: Remove Suggested Posts is easy! Simply add the extension to your Chrome browser, and it will automatically start cleansing your Facebook from unwanted suggesteds posts. 

For any additional keywords or suggestions, feel free to reach out to @UncertainCoder on Twitter. Your feedback helps us improve and adapt to the ever-changing digital landscape.                    

확장 프로그램 기본 정보

이름 Facebook Clarity: Remove Suggested Posts Facebook Clarity: Remove Suggested Posts
ID pnlkpfhdofmkhgkbjcdfnlleldehgicl
공식 URL https://chromewebstore.google.com/detail/facebook-clarity-remove-s/pnlkpfhdofmkhgkbjcdfnlleldehgicl
설명 A simple extension to remove suggested posts from Facebook.
파일 크기 72.14 KB
설치 횟수 96
현재 버전 1.2
최근 업데이트 2023-11-23
출시 날짜 2023-11-21
평점 5.00/5 총 2 개의 평점
개발자 Eric Tron
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://github.com/EricTron-FR/Facebook-Clarity/blob/main/privacy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Facebook Clarity: Remove Suggested Posts",
    "version": "1.2",
    "description": "A simple extension to remove suggested posts from Facebook.",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/facebook.com\/*",
        "*:\/\/*.facebook.com\/*"
    ],
    "action": {
        "default_popup": "hello.html",
        "default_icon": {
            "16": "images\/icon128.png",
            "48": "images\/icon128.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "scripts\/contentScript.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/icon128.png",
        "48": "images\/icon128.png",
        "128": "images\/icon128.png"
    }
}