Trypo Extension

This extension detects and blocks trypophobic images on a webpage

Cos'è Trypo Extension?

Trypo Extension è un'estensione di Chrome sviluppata da shafay07, e la sua funzione principale è "This extension detects and blocks trypophobic images on a webpage".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Trypo Extension

Scarica i file di estensione Trypo Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Trypo Extension Trypo Extension
ID jbegedofebaioenjdjpcfmkgidcahobi
URL Ufficiale https://chromewebstore.google.com/detail/trypo-extension/jbegedofebaioenjdjpcfmkgidcahobi
Descrizione This extension detects and blocks trypophobic images on a webpage
Dimensione del File 8.7 MB
Conteggio Installazioni 22
Versione Corrente 1.1
Ultimo Aggiornamento 2019-04-12
Data di Pubblicazione 2019-04-07
Valutazione 4.14/5 Totale 7 Valutazioni
Sviluppatore shafay07
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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'"
}