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…
O que é Feed Filter?
Feed Filter é uma extensão do Chrome desenvolvida por Maker, e sua principal característica é "Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Feed Filter
Baixe arquivos de extensão Feed Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | ajhegeembcahfofkkhafolgpjgnimnib |
URL Oficial | https://chromewebstore.google.com/detail/feed-filter/ajhegeembcahfofkkhafolgpjgnimnib |
Descrição | Feed Filter helps you to filter your facebook feed with posts based on the keywords you enter inside the extension. It can be used… |
Tamanho do Arquivo | 469 KB |
Contagem de Instalações | 81 |
Versão Atual | 1.0.1 |
Última Atualização | 2021-05-11 |
Data de Publicação | 2021-05-11 |
Desenvolvedor | Maker |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://automatics.one/privacy |
Idiomas Suportados | 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" ] } ] } |