Trypo Extension

This extension detects and blocks trypophobic images on a webpage

ما هو Trypo Extension؟

Trypo Extension هو إضافة Chrome تم تطويرها بواسطة shafay07، والميزة الرئيسية لها هي "This extension detects and blocks trypophobic images on a webpage".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Trypo Extension

قم بتنزيل ملفات الامتداد Trypo Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Trypo Extension Trypo Extension
ID jbegedofebaioenjdjpcfmkgidcahobi
عنوان URL الرسمي https://chromewebstore.google.com/detail/trypo-extension/jbegedofebaioenjdjpcfmkgidcahobi
الوصف This extension detects and blocks trypophobic images on a webpage
حجم الملف 8.7 MB
عدد التثبيتات 22
النسخة الحالية 1.1
آخر تحديث 2019-04-12
تاريخ النشر 2019-04-07
تقييم 4.14/5 مجموع تقييمات 7
المطور shafay07
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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'"
}