Remove Donald Trump from Facebook
Remove Donald Trump from Facebook Homepage
What is Remove Donald Trump from Facebook?
Remove Donald Trump from Facebook is a Chrome extension developed by Derek Story, and its main feature is "Remove Donald Trump from Facebook Homepage".
Extension Screenshots
Download Remove Donald Trump from Facebook Extension CRX File
Download Remove Donald Trump from Facebook extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Remove Donald Trump from Facebook |
ID | hhokbihnhhfghkbmihlgfcoafhkghdej |
Official URL | https://chromewebstore.google.com/detail/remove-donald-trump-from/hhokbihnhhfghkbmihlgfcoafhkghdej |
Description | Remove Donald Trump from Facebook Homepage |
File Size | 965 KB |
Installation Count | 2,152 |
Current Version | 3 |
Last Updated | 2017-02-26 |
Publish Date | 2017-02-26 |
Rating | 4.27/5 Total 148 Ratings |
Developer | Derek Story |
Payment Type | free |
Supported Languages | 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" } } |