Facebook Clarity: Remove Suggested Posts

A simple extension to remove suggested posts from Facebook.

Was ist Facebook Clarity: Remove Suggested Posts?

Facebook Clarity: Remove Suggested Posts ist eine Chrome-Erweiterung, die von Eric Tron entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension to remove suggested posts from Facebook.".

Erweiterungsscreenshots

screenshot

Facebook Clarity: Remove Suggested Posts-Erweiterungs-CRX-Datei herunterladen

Laden Sie Facebook Clarity: Remove Suggested Posts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Facebook Clarity: Remove Suggested Posts Facebook Clarity: Remove Suggested Posts
ID pnlkpfhdofmkhgkbjcdfnlleldehgicl
Offizielle URL https://chromewebstore.google.com/detail/facebook-clarity-remove-s/pnlkpfhdofmkhgkbjcdfnlleldehgicl
Beschreibung A simple extension to remove suggested posts from Facebook.
Dateigröße 72.14 KB
Installationsanzahl 96
Aktuelle Version 1.2
Letztes Update 2023-11-23
Veröffentlichungsdatum 2023-11-21
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Eric Tron
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://github.com/EricTron-FR/Facebook-Clarity/blob/main/privacy.md
Unterstützte Sprachen 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"
    }
}