Trump Face Block
Detect and block face of Donald Trump on the Web
什么是Trump Face Block?
Trump Face Block是由shoniko开发的Chrome扩展程序,该扩展的主要功能是“Detect and block face of Donald Trump on the Web”。
扩展截图
下载Trump Face Block扩展crx文件
下载Trump Face Block扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | |
ID | jhdiboefiphoflmekjffaccgbhachicn |
官方URL | https://chrome.google.com/webstore/detail/trump-face-block/jhdiboefiphoflmekjffaccgbhachicn |
简介 | Detect and block face of Donald Trump on the Web |
文件大小 | 11.25 MB |
安装次数 | 15 |
当前版本 | 0.1 |
更新时间 | 2018-07-09 |
上架时间 | 2018-07-09 |
评分 | 5.00/5 共1次评分 |
开发者 | shoniko |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } |