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…
Wat is Feed Filter?
Feed Filter is een Chrome-extensie ontwikkeld door Maker, en de belangrijkste functie 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…".
Extensie Screenshots
Download het CRX-bestand van de extensie Feed Filter
Download Feed Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
Officiële URL | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
Beschrijving | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
Bestandsgrootte | 469 KB |
Aantal Installaties | 81 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2021-05-11 |
Publicatiedatum | 2021-05-11 |
Ontwikkelaar | Maker |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://automatics.one/privacy |
Ondersteunde Talen | 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" ] } ] } |