Trypo Extension

This extension detects and blocks trypophobic images on a webpage

Was ist Trypo Extension?

Trypo Extension ist eine Chrome-Erweiterung, die von shafay07 entwickelt wurde, und ihr Hauptmerkmal ist "This extension detects and blocks trypophobic images on a webpage".

Erweiterungsscreenshots

screenshot

Trypo Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trypo Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Trypo Extension Trypo Extension
ID jbegedofebaioenjdjpcfmkgidcahobi
Offizielle URL https://chromewebstore.google.com/detail/trypo-extension/jbegedofebaioenjdjpcfmkgidcahobi
Beschreibung This extension detects and blocks trypophobic images on a webpage
Dateigröße 8.7 MB
Installationsanzahl 22
Aktuelle Version 1.1
Letztes Update 2019-04-12
Veröffentlichungsdatum 2019-04-07
Bewertung 4.14/5 Insgesamt 7 Bewertungen
Entwickler shafay07
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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'"
}