Trypo Extension

This extension detects and blocks trypophobic images on a webpage

什麼是Trypo Extension?

Trypo Extension是由shafay07開發的Chrome擴展程式,該擴展的主要功能是“This extension detects and blocks trypophobic images on a webpage”。

擴展截圖

screenshot

下載Trypo Extension擴展crx文件

下載Trypo Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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'"
}