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”。

擴展截圖

screenshot

下載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!                    

擴展基本資訊

名稱 Trump Face Block Trump Face Block
ID jhdiboefiphoflmekjffaccgbhachicn
官方網址 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"
}