Trypo Extension

This extension detects and blocks trypophobic images on a webpage

Co to jest Trypo Extension?

Trypo Extension to rozszerzenie Chrome opracowane przez shafay07, a jego główną funkcją jest „This extension detects and blocks trypophobic images on a webpage”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Trypo Extension

Pobierz pliki rozszerzeń Trypo Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Trypo Extension Trypo Extension
ID jbegedofebaioenjdjpcfmkgidcahobi
Oficjalny URL https://chromewebstore.google.com/detail/trypo-extension/jbegedofebaioenjdjpcfmkgidcahobi
Opis This extension detects and blocks trypophobic images on a webpage
Rozmiar pliku 8.7 MB
Liczba instalacji 22
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2019-04-12
Data Publikacji 2019-04-07
Ocena 4.14/5 Łącznie 7 Oceny
Deweloper shafay07
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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'"
}