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…
Co to jest Feed Filter?
Feed Filter to rozszerzenie Chrome opracowane przez Maker, a jego główną funkcją jest „Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Feed Filter
Pobierz pliki rozszerzeń Feed Filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
Oficjalny URL | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
Opis | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
Rozmiar pliku | 469 KB |
Liczba instalacji | 81 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2021-05-11 |
Data Publikacji | 2021-05-11 |
Deweloper | Maker |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://automatics.one/privacy |
Obsługiwane Języki | 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" ] } ] } |