Feed Filter
Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…
什么是Feed Filter?
Feed Filter是由Maker开发的Chrome扩展程序,该扩展的主要功能是“Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…”。
扩展截图
下载Feed Filter扩展crx文件
下载Feed Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used to delete the post with specific keywords you want or it can show you a post with the keywords you want to see.
扩展基本信息
名称 | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
官方URL | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
简介 | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
文件大小 | 469 KB |
安装次数 | 81 |
当前版本 | 1.0.1 |
更新时间 | 2021-05-11 |
上架时间 | 2021-05-11 |
开发者 | Maker |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://automatics.one/privacy |
支持的语言 | en |
manifest.json | |
{ "name": "Feed Filter", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.1", "description": "", "manifest_version": 2, "incognito": "split", "icons": { "128": "icons\/128.png" }, "browser_action": { "default_icon": "icons\/128.png", "default_popup": "popup\/popup.html" }, "background": { "persistent": true, "page": "background\/background.html" }, "permissions": [ "storage", "cookies", "notifications", "*:\/\/*.facebook.com\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*.facebook.com\/" ], "js": [ "scripts\/content_script.js", "scripts\/jquery.js" ] } ] } |