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
电子邮箱 [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\/*"
        ]
    }
}