Skin Tone Image Filter

This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone

Skin Tone Image Filter là gì?

Skin Tone Image Filter là một tiện ích mở rộng Chrome được phát triển bởi corpit.devel, và tính năng chính của nó là "This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Skin Tone Image Filter

Tải xuống các tệp mở rộng Skin Tone Image Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Use this extension to have skin tones in images greyed out, to minimize exposure to nudity and unwanted content during casual browsing.

This extension is a fork of existing extensions in the store and is under active development (July 2023).  Goals are to migrate to manifest v3 (complete), update the detection algorithm (complete), fix rendering bugs (in progress), and improve performance (awaiting contributions).

Code submissions are welcome:
https://github.com/yois615/OS-Image-Filter                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Skin Tone Image Filter Skin Tone Image Filter
ID olmgdlhfhakafgkfibdbkofbiakfombk
URL Chính Thức https://chromewebstore.google.com/detail/skin-tone-image-filter/olmgdlhfhakafgkfibdbkofbiakfombk
Mô tả This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone
Kích Thước Tệp 79.22 KB
Số Lần Cài Đặt 200
Phiên Bản Hiện Tại 3.3.10
Cập Nhật Lần Cuối 2023-07-06
Ngày Phát Hành 2023-06-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển corpit.devel
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skin Tone Image Filter",
    "short_name": "SKINTONEIMAGEFILTER",
    "version": "3.3.10",
    "manifest_version": 3,
    "description": "This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone",
    "icons": {
        "16": ".\/images\/icon16.png",
        "48": ".\/images\/icon48.png",
        "128": ".\/images\/icon128.png"
    },
    "action": {
        "default_icon": ".\/images\/icon-d.png",
        "default_title": "Skin Tone Filter",
        "default_popup": "popup.htm"
    },
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "options_page": "options.htm",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/content\/MouseController.js",
                ".\/js\/content\/Suspects.js",
                ".\/js\/content\/Eye.js",
                ".\/js\/content\/ImagesDisplayer.js",
                ".\/js\/content\/js.js",
                ".\/js\/content\/constants.js",
                ".\/js\/content\/domManipulation.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/eye.png",
                "images\/undo.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}