Grayscale Screen

Converts the screen to grayscale

什么是Grayscale Screen?

Grayscale Screen是由paperlite831开发的Chrome扩展程序,该扩展的主要功能是“Converts the screen to grayscale”。

扩展截图

screenshot
screenshot

下载Grayscale Screen扩展crx文件

下载Grayscale Screen扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        In the modern age of technology, where we spend significant time in front of screens, eye strain has become a common concern. The Greyscale Extension offers a unique solution to alleviate eye strain and promote visual comfort. By converting webpages to greyscale, it reduces the harsh contrast and vibrant colors that can strain the eyes. The subtle shades of grey create a more soothing and balanced visual experience. This not only helps individuals with existing eye conditions but also prevents potential eye strain for those who spend long hours browsing the internet. With the Greyscale Extension, users can enjoy a more relaxed and comfortable browsing experience while prioritizing their eye health in the digital era.                    

扩展基本信息

名称 Grayscale Screen Grayscale Screen
ID mccgphkdghdpebkjkokhbodbjobpihal
官方URL https://chromewebstore.google.com/detail/grayscale-screen/mccgphkdghdpebkjkokhbodbjobpihal
简介 Converts the screen to grayscale
文件大小 6.94 KB
安装次数 185
当前版本 1.0
更新时间 2023-06-05
上架时间 2023-06-04
评分 2.75/5 共4次评分
开发者 paperlite831
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Grayscale Screen",
    "version": "1.0",
    "description": "Converts the screen to grayscale",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "icons": {
        "48": "icon48.png"
    },
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon48.png"
        }
    },
    "commands": {
        "toggle-grayscale": {
            "suggested_key": {
                "default": "Ctrl+Shift+G",
                "mac": "MacCtrl+Shift+G"
            },
            "description": "Toggle Grayscale"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html",
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}