Trypo Extension

This extension detects and blocks trypophobic images on a webpage

O que é Trypo Extension?

Trypo Extension é uma extensão do Chrome desenvolvida por shafay07, e sua principal característica é "This extension detects and blocks trypophobic images on a webpage".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Trypo Extension

Baixe arquivos de extensão Trypo Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Trypo Extension Trypo Extension
ID jbegedofebaioenjdjpcfmkgidcahobi
URL Oficial https://chromewebstore.google.com/detail/trypo-extension/jbegedofebaioenjdjpcfmkgidcahobi
Descrição This extension detects and blocks trypophobic images on a webpage
Tamanho do Arquivo 8.7 MB
Contagem de Instalações 22
Versão Atual 1.1
Última Atualização 2019-04-12
Data de Publicação 2019-04-07
Classificação 4.14/5 Total de 7 Avaliações
Desenvolvedor shafay07
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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'"
}