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 क्या है?

Skin Tone Image Filter corpit.devel द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Skin Tone Image Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Skin Tone Image Filter Skin Tone Image Filter
ID olmgdlhfhakafgkfibdbkofbiakfombk
आधिकारिक URL https://chromewebstore.google.com/detail/skin-tone-image-filter/olmgdlhfhakafgkfibdbkofbiakfombk
विवरण This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone
फ़ाइल का आकार 79.22 KB
स्थापना संख्या 200
वर्तमान संस्करण 3.3.10
अंतिम अपडेट 2023-07-06
प्रकाशन तिथि 2023-06-15
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर corpit.devel
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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": [
                ""
            ]
        }
    ]
}