Facebook Clarity: Remove Suggested Posts

A simple extension to remove suggested posts from Facebook.

Facebook Clarity: Remove Suggested Posts là gì?

Facebook Clarity: Remove Suggested Posts là một tiện ích mở rộng Chrome được phát triển bởi Eric Tron, và tính năng chính của nó là "A simple extension to remove suggested posts from Facebook.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Facebook Clarity: Remove Suggested Posts

Tải xuống các tệp mở rộng Facebook Clarity: Remove Suggested Posts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Facebook Clarity: Remove Suggested Posts Facebook Clarity: Remove Suggested Posts
ID pnlkpfhdofmkhgkbjcdfnlleldehgicl
URL Chính Thức https://chromewebstore.google.com/detail/facebook-clarity-remove-s/pnlkpfhdofmkhgkbjcdfnlleldehgicl
Mô tả A simple extension to remove suggested posts from Facebook.
Kích Thước Tệp 72.14 KB
Số Lần Cài Đặt 96
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2023-11-23
Ngày Phát Hành 2023-11-21
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Eric Tron
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://github.com/EricTron-FR/Facebook-Clarity/blob/main/privacy.md
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}