Auto Capitalise Sentence

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

Auto Capitalise Sentenceとは何ですか?

Auto Capitalise Sentenceはhraiによって開発されたChromeの拡張機能で、その主な機能は「Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.」です。

拡張機能のスクリーンショット

screenshot

Auto Capitalise Sentence拡張機能のCRXファイルをダウンロード

Auto Capitalise Sentence拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Auto Capitalise Sentence Auto Capitalise Sentence
ID ibihgblnfolhldgjbikghldfhkgknlpa
公式URL https://chromewebstore.google.com/detail/auto-capitalise-sentence/ibihgblnfolhldgjbikghldfhkgknlpa
説明 Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.
ファイルサイズ 333 KB
インストール数 1,159
現在のバージョン 24.2.12
最終更新日 2024-02-12
公開日 2022-05-10
評価 3.00/5 合計 7 レビュー
開発者 hrai
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/hrai/auto-capitalise-sentence/
ヘルプページのURL https://github.com/hrai/auto-capitalise-sentence/issues
対応言語 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": []
}