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
电子邮箱 [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": []
}