Gentle Alerts

Intercept browser alerts (the interruptive popups) and turn them into gentle modals.

什么是Gentle Alerts?

Gentle Alerts是由https://www.albertyw.com开发的Chrome扩展程序,该扩展的主要功能是“Intercept browser alerts (the interruptive popups) and turn them into gentle modals.”。

扩展截图

screenshot
screenshot

下载Gentle Alerts扩展crx文件

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

扩展使用说明

                        The extension will replace the interruptive browser alert window with a modal which won't force you to switch between tabs.  It also prevents you from accidentally closing alert windows when you're typing.

You can close the modal by pressing "Enter", "Escape", or "Space".  The alert window also comes with a (disableable) audio chime and can be automatically closed after an amount of time.                    

扩展基本信息

名称 Gentle Alerts Gentle Alerts
ID bcjaadnpjolbaginfighnpcdjmbeiahn
官方URL https://chromewebstore.google.com/detail/gentle-alerts/bcjaadnpjolbaginfighnpcdjmbeiahn
简介 Intercept browser alerts (the interruptive popups) and turn them into gentle modals.
文件大小 376 KB
安装次数 41
当前版本 1.3.1
更新时间 2023-05-06
上架时间 2020-03-21
评分 5.00/5 共1次评分
开发者 https://www.albertyw.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/albertyw/gentle-alerts
帮助页面URL https://github.com/albertyw/gentle-alerts/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gentle Alerts",
    "version": "1.3.1",
    "description": "Intercept browser alerts (the interruptive popups) and turn them into gentle modals.",
    "icons": {
        "16": "img\/logo16x16.png",
        "32": "img\/logo32x32.png",
        "48": "img\/logo48x48.png",
        "128": "img\/logo128x128.png",
        "900": "img\/logo900x900.png"
    },
    "author": "Albert Wang",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "bootstrap.js"
            ]
        }
    ],
    "homepage_url": "https:\/\/github.com\/albertyw\/gentle-alerts",
    "offline_enabled": true,
    "permissions": [
        "tabs",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "gentle-alerts.min.js",
                "gentle-alerts.css",
                "notification.ogg",
                "options.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "options.htm"
    }
}