Auto Capitalise Sentence

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

What is Auto Capitalise Sentence?

Auto Capitalise Sentence is a Chrome extension developed by hrai, and its main feature is "Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.".

Extension Screenshots

screenshot

Download Auto Capitalise Sentence Extension CRX File

Download Auto Capitalise Sentence extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Auto Capitalise Sentence Auto Capitalise Sentence
ID ibihgblnfolhldgjbikghldfhkgknlpa
Official URL https://chromewebstore.google.com/detail/auto-capitalise-sentence/ibihgblnfolhldgjbikghldfhkgknlpa
Description Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.
File Size 333 KB
Installation Count 1,159
Current Version 24.2.12
Last Updated 2024-02-12
Publish Date 2022-05-10
Rating 3.00/5 Total 7 Ratings
Developer hrai
Email [email protected]
Payment Type free
Extension Website https://github.com/hrai/auto-capitalise-sentence/
Help Page URL https://github.com/hrai/auto-capitalise-sentence/issues
Supported Languages 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": []
}