Gentle Alerts

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

Gentle Alerts là gì?

Gentle Alerts là một tiện ích mở rộng Chrome được phát triển bởi https://www.albertyw.com, và tính năng chính của nó là "Intercept browser alerts (the interruptive popups) and turn them into gentle modals.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gentle Alerts

Tải xuống các tệp mở rộng Gentle Alerts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gentle Alerts Gentle Alerts
ID bcjaadnpjolbaginfighnpcdjmbeiahn
URL Chính Thức https://chromewebstore.google.com/detail/gentle-alerts/bcjaadnpjolbaginfighnpcdjmbeiahn
Mô tả Intercept browser alerts (the interruptive popups) and turn them into gentle modals.
Kích Thước Tệp 376 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2023-05-06
Ngày Phát Hành 2020-03-21
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://www.albertyw.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/albertyw/gentle-alerts
URL Trang Trợ Giúp https://github.com/albertyw/gentle-alerts/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}