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
官方網址 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
電子郵箱 [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": []
}