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.”。
扩展截图
下载Facebook Clarity: Remove Suggested Posts扩展crx文件
下载Facebook Clarity: Remove Suggested Posts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } } |