Trump Face Block

Detect and block face of Donald Trump on the Web

Trump Face Block là gì?

Trump Face Block là một tiện ích mở rộng Chrome được phát triển bởi shoniko, và tính năng chính của nó là "Detect and block face of Donald Trump on the Web".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trump Face Block

Tải xuống các tệp mở rộng Trump Face Block dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trump Face Block Trump Face Block
ID jhdiboefiphoflmekjffaccgbhachicn
URL Chính Thức https://chrome.google.com/webstore/detail/trump-face-block/jhdiboefiphoflmekjffaccgbhachicn
Mô tả Detect and block face of Donald Trump on the Web
Kích Thước Tệp 11.25 MB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2018-07-09
Ngày Phát Hành 2018-07-09
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển shoniko
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}