Auto Capitalise Sentence

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

Wat is Auto Capitalise Sentence?

Auto Capitalise Sentence is een Chrome-extensie ontwikkeld door hrai, en de belangrijkste functie is "Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Auto Capitalise Sentence

Download Auto Capitalise Sentence-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Auto Capitalise Sentence Auto Capitalise Sentence
ID ibihgblnfolhldgjbikghldfhkgknlpa
Officiële URL https://chromewebstore.google.com/detail/auto-capitalise-sentence/ibihgblnfolhldgjbikghldfhkgknlpa
Beschrijving Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.
Bestandsgrootte 333 KB
Aantal Installaties 1,159
Huidige Versie 24.2.12
Laatst Bijgewerkt 2024-02-12
Publicatiedatum 2022-05-10
Beoordeling 3.00/5 Totaal 7 Beoordelingen
Ontwikkelaar hrai
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/hrai/auto-capitalise-sentence/
Help Pagina-URL https://github.com/hrai/auto-capitalise-sentence/issues
Ondersteunde Talen 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": []
}