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