Accent Press

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

Was ist Accent Press?

Accent Press ist eine Chrome-Erweiterung, die von 3Webs entwickelt wurde, und ihr Hauptmerkmal ist "Accent Press is a simple Chrome Extension that allows you to easily write accents.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Accent Press-Erweiterungs-CRX-Datei herunterladen

Laden Sie Accent Press-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Accent Press Accent Press
ID nfcdcdoegfnidkeldipgmhbabmndlhbf
Offizielle URL https://chromewebstore.google.com/detail/accent-press/nfcdcdoegfnidkeldipgmhbabmndlhbf
Beschreibung Accent Press is a simple Chrome Extension that allows you to easily write accents.
Dateigröße 35.82 KB
Installationsanzahl 1,252
Aktuelle Version 1.4.1
Letztes Update 2024-02-20
Veröffentlichungsdatum 2021-09-23
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler 3Webs
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/OpenSchooling/AccentPress
Hilfeseite URL https://github.com/OpenSchooling/AccentPress/issues
Unterstützte Sprachen 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\/*"
        ]
    }
}