Trump Face Block
Detect and block face of Donald Trump on the Web
What is Trump Face Block?
Trump Face Block is a Chrome extension developed by shoniko, and its main feature is "Detect and block face of Donald Trump on the Web".
Extension Screenshots
Download Trump Face Block Extension CRX File
Download Trump Face Block 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
Block the face of Donald Trump on the Web using facial recognition machine learning algorithms. This is an experimental extension, as running machine learning algorithms can be quite resource intensive. Actual detection speed highly depends on your hardware (a better GPU certainly helps). All the images smaller than 150px are ignored. Source code can be found here: https://github.com/shoniko/trumpblock Happy blocking!
Extension Basic Information
Name | |
ID | jhdiboefiphoflmekjffaccgbhachicn |
Official URL | https://chrome.google.com/webstore/detail/trump-face-block/jhdiboefiphoflmekjffaccgbhachicn |
Description | Detect and block face of Donald Trump on the Web |
File Size | 11.25 MB |
Installation Count | 15 |
Current Version | 0.1 |
Last Updated | 2018-07-09 |
Publish Date | 2018-07-09 |
Rating | 5.00/5 Total 1 Ratings |
Developer | shoniko |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Oleksandr Paraska", "background": { "persistent": true, "scripts": [ "face-api.js", "background.js" ] }, "browser_action": { "default_icon": { "16": "icons\/carrot-16.png", "19": "icons\/carrot-19.png", "20": "icons\/carrot-20.png", "32": "icons\/carrot-32.png", "38": "icons\/carrot-38.png", "40": "icons\/carrot-40.png" }, "default_title": "Trump Face Block" }, "content_scripts": [ { "all_frames": true, "js": [ "contentscript.js" ], "match_about_blank": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "description": "Detect and block face of Donald Trump on the Web", "icons": { "128": "icons\/detailed\/carrot-128.png", "16": "icons\/carrot-16.png", "32": "icons\/carrot-32.png", "48": "icons\/detailed\/carrot-48.png", "64": "icons\/detailed\/carrot-64.png" }, "manifest_version": 2, "minimum_chrome_version": "49.0", "name": "Trump Face Block", "permissions": [ "tabs" ], "short_name": "Trump Face Block", "version": "0.1" } |