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
Eメール [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"
    }
}