Facebook Clarity: Remove Suggested Posts
A simple extension to remove suggested posts from Facebook.
Apa itu Facebook Clarity: Remove Suggested Posts?
Facebook Clarity: Remove Suggested Posts adalah ekstensi Chrome yang dikembangkan oleh Eric Tron, dan fitur utamanya adalah "A simple extension to remove suggested posts from Facebook.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Facebook Clarity: Remove Suggested Posts
Unduh file ekstensi Facebook Clarity: Remove Suggested Posts dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Facebook Clarity: Remove Suggested Posts |
ID | pnlkpfhdofmkhgkbjcdfnlleldehgicl |
URL Resmi | https://chromewebstore.google.com/detail/facebook-clarity-remove-s/pnlkpfhdofmkhgkbjcdfnlleldehgicl |
Deskripsi | A simple extension to remove suggested posts from Facebook. |
Ukuran File | 72.14 KB |
Jumlah Instalasi | 96 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2023-11-23 |
Tanggal Publikasi | 2023-11-21 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Eric Tron |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://github.com/EricTron-FR/Facebook-Clarity/blob/main/privacy.md |
Bahasa yang Didukung | 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" } } |