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ファイルをダウンロード

Accent Press拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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\/*"
        ]
    }
}