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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": []
}