Trypo Extension

This extension detects and blocks trypophobic images on a webpage

什么是Trypo Extension?

Trypo Extension是由shafay07开发的Chrome扩展程序,该扩展的主要功能是“This extension detects and blocks trypophobic images on a webpage”。

扩展截图

screenshot

下载Trypo Extension扩展crx文件

下载Trypo Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension uses CNN model to detect trypophobic images on a web-page and blurs them out. It helps people suffering from trypophobia to surf internet happily :)

This tool is developed as a part of research work at the University of Nottingham.                    

扩展基本信息

名称 Trypo Extension Trypo Extension
ID jbegedofebaioenjdjpcfmkgidcahobi
官方URL https://chromewebstore.google.com/detail/trypo-extension/jbegedofebaioenjdjpcfmkgidcahobi
简介 This extension detects and blocks trypophobic images on a webpage
文件大小 8.7 MB
安装次数 22
当前版本 1.1
更新时间 2019-04-12
上架时间 2019-04-07
评分 4.14/5 共7次评分
开发者 shafay07
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trypo Extension",
    "version": "1.1",
    "description": "This extension detects and blocks trypophobic images on a webpage",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/load-image.all.min.js",
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.jsdelivr.net\/npm\/@tensorflow\/[email protected]\/dist\/tf.min.js; object-src 'self'"
}