Auto Capitalise Sentence

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

Co je Auto Capitalise Sentence?

Auto Capitalise Sentence je rozšíření Chrome vyvinuté hrai, a jeho hlavní funkcí je „Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Auto Capitalise Sentence

Stáhněte si soubory rozšíření Auto Capitalise Sentence ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Auto Capitalise Sentence Auto Capitalise Sentence
ID ibihgblnfolhldgjbikghldfhkgknlpa
Oficiální URL https://chromewebstore.google.com/detail/auto-capitalise-sentence/ibihgblnfolhldgjbikghldfhkgknlpa
Popis Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.
Velikost souboru 333 KB
Počet instalací 1,159
Aktuální Verze 24.2.12
Poslední Aktualizace 2024-02-12
Datum Vydání 2022-05-10
Hodnocení 3.00/5 Celkem 7 Hodnocení
Vývojář hrai
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/hrai/auto-capitalise-sentence/
URL Stránky Nápovědy https://github.com/hrai/auto-capitalise-sentence/issues
Podporované Jazyky 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": []
}