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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}