Trypo Extension

This extension detects and blocks trypophobic images on a webpage

Vad är Trypo Extension?

Trypo Extension är en Chrome-tillägg utvecklad av shafay07, och dess huvudfunktion är "This extension detects and blocks trypophobic images on a webpage".

Tilläggsskärmbilder

screenshot

Ladda ner Trypo Extension-förlängningens CRX-fil

Ladda ner Trypo Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Trypo Extension Trypo Extension
ID jbegedofebaioenjdjpcfmkgidcahobi
Officiell webbadress https://chromewebstore.google.com/detail/trypo-extension/jbegedofebaioenjdjpcfmkgidcahobi
Beskrivning This extension detects and blocks trypophobic images on a webpage
Filstorlek 8.7 MB
Antal Installationer 22
Aktuell Version 1.1
Senast Uppdaterad 2019-04-12
Publiceringsdatum 2019-04-07
Betyg 4.14/5 Totalt 7 Betyg
Utvecklare shafay07
E-post [email protected]
Betalningssätt free
Stödda Språk 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'"
}