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…
Vad är Feed Filter?
Feed Filter är en Chrome-tillägg utvecklad av Maker, och dess huvudfunktion är "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…".
Tilläggsskärmbilder
Ladda ner Feed Filter-förlängningens CRX-fil
Ladda ner Feed Filter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
Officiell webbadress | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
Beskrivning | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
Filstorlek | 469 KB |
Antal Installationer | 81 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2021-05-11 |
Publiceringsdatum | 2021-05-11 |
Utvecklare | Maker |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://automatics.one/privacy |
Stödda Språk | 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" ] } ] } |