Gentle Alerts

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

Co je Gentle Alerts?

Gentle Alerts je rozšíření Chrome vyvinuté https://www.albertyw.com, a jeho hlavní funkcí je „Intercept browser alerts (the interruptive popups) and turn them into gentle modals.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Gentle Alerts

Stáhněte si soubory rozšíření Gentle Alerts ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Gentle Alerts Gentle Alerts
ID bcjaadnpjolbaginfighnpcdjmbeiahn
Oficiální URL https://chromewebstore.google.com/detail/gentle-alerts/bcjaadnpjolbaginfighnpcdjmbeiahn
Popis Intercept browser alerts (the interruptive popups) and turn them into gentle modals.
Velikost souboru 376 KB
Počet instalací 41
Aktuální Verze 1.3.1
Poslední Aktualizace 2023-05-06
Datum Vydání 2020-03-21
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://www.albertyw.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/albertyw/gentle-alerts
URL Stránky Nápovědy https://github.com/albertyw/gentle-alerts/issues
Podporované Jazyky 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"
    }
}