Accent Press

Accent Press is a simple Chrome Extension that allows you to easily write accents.

Accent Press란 무엇입니까?

Accent Press은(는) 3Webs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Accent Press is a simple Chrome Extension that allows you to easily write accents."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Accent Press 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        To type accents, simply hold the corresponding key on your keyboard. For example, to type è, hold the "E" key on your keyboard until you reach è. Simple!

💭 Want another language added? Is there something you think could be done better? Is there a bug? Please open an issue! It really helps to have feedback.
https://github.com/OpenSchooling/AccentPress/issues

📝 Changelog: https://github.com/OpenSchooling/AccentPress/releases

❤️ Open Source: AGPL-3.0
📁 https://github.com/OpenSchooling/AccentPress                    

확장 프로그램 기본 정보

이름 Accent Press Accent Press
ID nfcdcdoegfnidkeldipgmhbabmndlhbf
공식 URL https://chromewebstore.google.com/detail/accent-press/nfcdcdoegfnidkeldipgmhbabmndlhbf
설명 Accent Press is a simple Chrome Extension that allows you to easily write accents.
파일 크기 35.82 KB
설치 횟수 1,252
현재 버전 1.4.1
최근 업데이트 2024-02-20
출시 날짜 2021-09-23
평점 4.20/5 총 5 개의 평점
개발자 3Webs
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/OpenSchooling/AccentPress
도움말 페이지 URL https://github.com/OpenSchooling/AccentPress/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDesc__",
    "version": "1.4.1",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16-transparent.png",
        "48": "icons\/icon48-transparent.png",
        "128": "icons\/icon128-transparent.png"
    },
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16-transparent.png",
            "48": "icons\/icon48-transparent.png",
            "128": "icons\/icon128-transparent.png"
        },
        "default_popup": "html\/extension_settings.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/inject.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/*"
            ],
            "js": [
                "js\/inject_gdoc.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/accentpress.pandapip1.com\/*"
        ]
    }
}