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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hrai และคุณลักษณะหลักของมันคือ "Browser add-on/extension to automatically capitalise the first letter of a sentence in text fields while typing."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Capitalise Sentence

ดาวน์โหลดไฟล์ส่วนขยาย 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": []
}