PhobiaBlocker

Enjoy a phobia free web. Block scary images from a long list of physical things.

PhobiaBlockerとは何ですか?

PhobiaBlockerはFAB Vによって開発されたChromeの拡張機能で、その主な機能は「Enjoy a phobia free web. Block scary images from a long list of physical things.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

PhobiaBlocker拡張機能のCRXファイルをダウンロード

PhobiaBlocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        You are on your favorite chat or browsing your favorite social media when suddenly a wild and scary image of a spider appears! PhobiaBlocker lets you enjoy a phobia free web.

PhobiaBlocker blocks scary images of your phobia. Choose what to block from a long list of physical things.

Features
• Automatically block images representing physical things you chose
• Manually block or unblock images with a right-click
• Automatically block or trust (for performance saving) images whose src matches a given regex (blocking has priority)
• Add trusted websites (domain name with sub domain) for performance saving

Options
• Quick selection to block spider-like and insect-like images
• Advanced selection from a long list of physical things
• Speed/Accuracy tradeoff of the automatic blocker
• Risk management of the automatic blocker
• Add or remove a regex to automatically trust or block images using their src
• Enable dark or light mode (dark mode by default)
• Pause the automatic blocker (manual blocking is still enabled)
• Label trusted website from the popup

Privacy
• No browsing data is sent to an external endpoint.
• Images are analysed on your computer but there are not saved in any way.

Technical details and restrictions
• To analyse images Machine Learning models for imagenet classification are used. The list of things to block comes from imagenet classes. This is why there are only physical things. For instance blocking abstract phobia like fear of heights or gore is not supported.
• Are analysed  and svg elements . When a new image is added to the DOM or is changing, the element is also analysed. Images from canvas and css property background-image are not supported.
• Images are first temporary blocked before their analyse. Images can sometimes blink before being temporary blocked.
• More than 99% of the size of the extension come from the Machine Learning models.

As a bonus a little surprise for Tibetan Mastiff lovers! (Can be disabled in the options)                    

拡張機能の基本情報

名前 PhobiaBlocker PhobiaBlocker
ID dglbodgngpkmgceoiihoaopibimkihnb
公式URL https://chromewebstore.google.com/detail/phobiablocker/dglbodgngpkmgceoiihoaopibimkihnb
説明 Enjoy a phobia free web. Block scary images from a long list of physical things.
ファイルサイズ 136 MB
インストール数 125
現在のバージョン 1.2.0
最終更新日 2020-05-10
公開日 2020-05-10
評価 3.40/5 合計 5 レビュー
開発者 FAB V
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PhobiaBlocker",
    "description": "Enjoy a phobia free web. Block scary images from a long list of physical things.",
    "version": "1.2.0",
    "isForFirefox": false,
    "browser_specific_settings": {
        "gecko": {
            "id": "{dbf022f5-7da4-47aa-bb4c-09234c07039b}",
            "strict_min_version": "57.0"
        }
    },
    "icons": {
        "16": "img\/default\/icon16.png",
        "32": "img\/default\/icon32.png",
        "48": "img\/default\/icon48.png",
        "64": "img\/default\/icon64.png",
        "96": "img\/default\/icon96.png",
        "128": "img\/default\/icon128.png",
        "256": "img\/default\/icon256.png"
    },
    "background": {
        "scripts": [
            "chromeCompatibility.js",
            "json\/imageNetClasses.json.js",
            "commonOptions.js",
            "commonPopupInfo.js",
            "background_browserified.js",
            "thirdParty\/onnx.min.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/default\/icon16.png",
            "32": "img\/default\/icon32.png",
            "48": "img\/default\/icon48.png",
            "64": "img\/default\/icon64.png",
            "96": "img\/default\/icon96.png",
            "128": "img\/default\/icon128.png",
            "256": "img\/default\/icon256.png"
        },
        "default_title": "Censor Phobia",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "chromeCompatibility.js",
                "json\/imageNetClasses.json.js",
                "commonOptions.js",
                "commonPopupInfo.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "img\/default\/icon32.png",
        "img\/analysing\/icon32.png"
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}