Auto Capitalise Sentence

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

Auto Capitalise Sentence là gì?

Auto Capitalise Sentence là một tiện ích mở rộng Chrome được phát triển bởi hrai, và tính năng chính của nó là "Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Auto Capitalise Sentence

Tải xuống các tệp mở rộng Auto Capitalise Sentence dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Auto Capitalise Sentence Auto Capitalise Sentence
ID ibihgblnfolhldgjbikghldfhkgknlpa
URL Chính Thức https://chromewebstore.google.com/detail/auto-capitalise-sentence/ibihgblnfolhldgjbikghldfhkgknlpa
Mô tả Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing.
Kích Thước Tệp 333 KB
Số Lần Cài Đặt 1,159
Phiên Bản Hiện Tại 24.2.12
Cập Nhật Lần Cuối 2024-02-12
Ngày Phát Hành 2022-05-10
Đánh Giá 3.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển hrai
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hrai/auto-capitalise-sentence/
URL Trang Trợ Giúp https://github.com/hrai/auto-capitalise-sentence/issues
Ngôn Ngữ Được Hỗ Trợ 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": []
}