Gentle Alerts

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

Что такое Gentle Alerts?

Gentle Alerts - это расширение Chrome, разработанное https://www.albertyw.com, и его основная функция - "Intercept browser alerts (the interruptive popups) and turn them into gentle modals.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Gentle Alerts

Скачайте файлы расширений 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"
    }
}