Auto Capitalise Sentence

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

Vad är Auto Capitalise Sentence?

Auto Capitalise Sentence är en Chrome-tillägg utvecklad av hrai, och dess huvudfunktion är "Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.".

Tilläggsskärmbilder

screenshot

Ladda ner Auto Capitalise Sentence-förlängningens CRX-fil

Ladda ner Auto Capitalise Sentence-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Auto Capitalise Sentence Auto Capitalise Sentence
ID ibihgblnfolhldgjbikghldfhkgknlpa
Officiell webbadress https://chromewebstore.google.com/detail/auto-capitalise-sentence/ibihgblnfolhldgjbikghldfhkgknlpa
Beskrivning Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.
Filstorlek 333 KB
Antal Installationer 1,159
Aktuell Version 24.2.12
Senast Uppdaterad 2024-02-12
Publiceringsdatum 2022-05-10
Betyg 3.00/5 Totalt 7 Betyg
Utvecklare hrai
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/hrai/auto-capitalise-sentence/
Hjälpsida URL https://github.com/hrai/auto-capitalise-sentence/issues
Stödda Språk 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": []
}