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
官方網址 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"
    }
}