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
官方網址 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\/*"
        ]
    }
}