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 je Feed Filter?
Feed Filter je rozšíření Chrome vyvinuté Maker, a jeho hlavní funkcí je „Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Feed Filter
Stáhněte si soubory rozšíření Feed Filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
Oficiální URL | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
Popis | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
Velikost souboru | 469 KB |
Počet instalací | 81 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2021-05-11 |
Datum Vydání | 2021-05-11 |
Vývojář | Maker |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://automatics.one/privacy |
Podporované Jazyky | 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" ] } ] } |