CapAlert

CapAlert gives an audible warning when your Caps Lock is mistakenly left on.

Was ist CapAlert?

CapAlert ist eine Chrome-Erweiterung, die von zodiakparedes entwickelt wurde, und ihr Hauptmerkmal ist "CapAlert gives an audible warning when your Caps Lock is mistakenly left on.".

Erweiterungsscreenshots

screenshot

CapAlert-Erweiterungs-CRX-Datei herunterladen

Laden Sie CapAlert-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        I recently had an idea for a free extension. I am constantly typing with my caps on and don't become aware of it until I have finished typing. Very frustrating. My thought was: what if I created an extension that gave an audible warning when more than three caps are typed in a row, alerting you to look up at the screen? My new extension integrates wonderfully with both Firefox and Chrome browsers. My goal was to assist the visually impaired and the elderly who want to stay involved and current with social media, news and work. But even the best typist can forget their caps are on. Get CapAlert before having to type that whole paragraph again!

Thank you,
Zodiak Paredes                    

Grundlegende Informationen zur Erweiterung

Name CapAlert CapAlert
ID ibeckhoigojdjkahpmemablmfgejemmk
Offizielle URL https://chromewebstore.google.com/detail/capalert/ibeckhoigojdjkahpmemablmfgejemmk
Beschreibung CapAlert gives an audible warning when your Caps Lock is mistakenly left on.
Dateigröße 204 KB
Installationsanzahl 80
Aktuelle Version 0.2
Letztes Update 2020-09-05
Veröffentlichungsdatum 2019-06-22
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler zodiakparedes
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.facebook.com/CapAlert-312364423009776
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CapAlert",
    "version": "0.2",
    "manifest_version": 2,
    "description": "CapAlert gives an audible warning when your Caps Lock is mistakenly left on.",
    "homepage_url": "https:\/\/www.capalert.us\/",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "page action demo",
        "default_popup": "page_action.html"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}