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…
What is Feed Filter?
Feed Filter is a Chrome extension developed by Maker, and its main feature is "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…".
Extension Screenshots
Download Feed Filter Extension CRX File
Download Feed Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
Official URL | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
Description | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
File Size | 469 KB |
Installation Count | 81 |
Current Version | 1.0.1 |
Last Updated | 2021-05-11 |
Publish Date | 2021-05-11 |
Developer | Maker |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://automatics.one/privacy |
Supported Languages | 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" ] } ] } |