Red Typography

Typography in text fields.

Was ist Red Typography?

Red Typography ist eine Chrome-Erweiterung, die von Denis Seleznev entwickelt wurde, und ihr Hauptmerkmal ist "Typography in text fields.".

Erweiterungsscreenshots

screenshot
screenshot

Red Typography-Erweiterungs-CRX-Datei herunterladen

Laden Sie Red Typography-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

                        Red Typography automatically helps to place non-breaking spaces, correct minor typos, allow the quotation marks to a correct format, replace the hyphens with dashes in the right places and much more.

The addition does not use third-party online services.
Based on https://github.com/typograf/typograf/                    

Grundlegende Informationen zur Erweiterung

Name Red Typography Red Typography
ID dgmmkhdeghobfcedlnmgbncknnfjhnmo
Offizielle URL https://chromewebstore.google.com/detail/red-typography/dgmmkhdeghobfcedlnmgbncknnfjhnmo
Beschreibung Typography in text fields.
Dateigröße 45.3 KB
Installationsanzahl 591
Aktuelle Version 1.4.0
Letztes Update 2023-05-09
Veröffentlichungsdatum 2019-03-08
Bewertung 4.00/5 Insgesamt 17 Bewertungen
Entwickler Denis Seleznev
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/typograf/red-typography-webextension/
Hilfeseite URL https://github.com/typograf/red-typography-webextension/issues
Unterstützte Sprachen en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "1.4.0",
    "default_locale": "en",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "commands": {
        "typograf-key": {
            "suggested_key": {
                "default": "Alt+Shift+T"
            },
            "description": "__MSG_commandShortcut__"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup\/browser.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "browser_style": true,
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "64": "icons\/64.png"
        }
    },
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png"
    }
}