Gentle Alerts

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

Gentle Alerts क्या है?

Gentle Alerts https://www.albertyw.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Intercept browser alerts (the interruptive popups) and turn them into gentle modals."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gentle Alerts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}