Remove Donald Trump from Facebook
Remove Donald Trump from Facebook Homepage
O que é Remove Donald Trump from Facebook?
Remove Donald Trump from Facebook é uma extensão do Chrome desenvolvida por Derek Story, e sua principal característica é "Remove Donald Trump from Facebook Homepage".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Remove Donald Trump from Facebook
Baixe arquivos de extensão Remove Donald Trump from Facebook 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
Like this extension? Donations are appreciated at: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KREFNCYGZJCBE -------------------------- Remove posts on Facebook that mention "Trump". A post must contain the text string "trump" in order for the post to be removed. If the post only mentions "Donald", "President", or god forbid, only shows his picture, the post will remain. Instructions: It runs in the background, so you won't see an icon for it or anything. If you installed it, its running. If you want to remove it, delete it/disable it from chrome://extensions/ -------------------------- Logo Designed by: http://rustlerdesigns.com https://www.reddit.com/user/cpncjwhitebeard contact: [email protected] http://derekstory.com
Informações Básicas da Extensão
Nome | Remove Donald Trump from Facebook |
ID | hhokbihnhhfghkbmihlgfcoafhkghdej |
URL Oficial | https://chromewebstore.google.com/detail/remove-donald-trump-from/hhokbihnhhfghkbmihlgfcoafhkghdej |
Descrição | Remove Donald Trump from Facebook Homepage |
Tamanho do Arquivo | 965 KB |
Contagem de Instalações | 2,152 |
Versão Atual | 3 |
Última Atualização | 2017-02-26 |
Data de Publicação | 2017-02-26 |
Classificação | 4.27/5 Total de 148 Avaliações |
Desenvolvedor | Derek Story |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Remove Donald Trump from Facebook", "description": "Remove Donald Trump from Facebook Homepage", "version": "3", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*" ], "run_at": "document_start", "js": [ "facebook_filter.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon48.png" } } |