Auto Capitalise Sentence

Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.

Was ist Auto Capitalise Sentence?

Auto Capitalise Sentence ist eine Chrome-Erweiterung, die von hrai entwickelt wurde, und ihr Hauptmerkmal ist "Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.".

Erweiterungsscreenshots

screenshot

Auto Capitalise Sentence-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Capitalise Sentence-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

                        Browser extension to automatically capitalise the first letter of a sentence in text fields while typing. It also capitalises some words (proper nouns) and has some goodies.                    

Grundlegende Informationen zur Erweiterung

Name Auto Capitalise Sentence Auto Capitalise Sentence
ID ibihgblnfolhldgjbikghldfhkgknlpa
Offizielle URL https://chromewebstore.google.com/detail/auto-capitalise-sentence/ibihgblnfolhldgjbikghldfhkgknlpa
Beschreibung Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.
Dateigröße 333 KB
Installationsanzahl 1,159
Aktuelle Version 24.2.12
Letztes Update 2024-02-12
Veröffentlichungsdatum 2022-05-10
Bewertung 3.00/5 Insgesamt 7 Bewertungen
Entwickler hrai
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/hrai/auto-capitalise-sentence/
Hilfeseite URL https://github.com/hrai/auto-capitalise-sentence/issues
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Capitalise Sentence",
    "description": "Browser add-on\/extension to automatically capitalise the first letter of a sentence in text fields while typing.",
    "homepage_url": "https:\/\/github.com\/hrai\/auto-capitalise-sentence\/",
    "manifest_version": 3,
    "version": "24.2.12",
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "dependencies\/jquery.min.js",
                "lib\/main.bundle.js",
                "lib\/settings.bundle.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/auto-capitalise-sentence.png",
        "48": "icons\/auto-capitalise-sentence.png",
        "128": "icons\/auto-capitalise-sentence.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": "icons\/auto-capitalise-sentence.png",
        "default_title": "Auto-capitalise sentence",
        "default_popup": "popup\/settings.html"
    },
    "content_security_policy": []
}