Red Typography

Typography in text fields.

Co to jest Red Typography?

Red Typography to rozszerzenie Chrome opracowane przez Denis Seleznev, a jego główną funkcją jest „Typography in text fields.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Red Typography

Pobierz pliki rozszerzeń Red Typography w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Red Typography Red Typography
ID dgmmkhdeghobfcedlnmgbncknnfjhnmo
Oficjalny URL https://chromewebstore.google.com/detail/red-typography/dgmmkhdeghobfcedlnmgbncknnfjhnmo
Opis Typography in text fields.
Rozmiar pliku 45.3 KB
Liczba instalacji 591
Aktualna Wersja 1.4.0
Ostatnia Aktualizacja 2023-05-09
Data Publikacji 2019-03-08
Ocena 4.00/5 Łącznie 17 Oceny
Deweloper Denis Seleznev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/typograf/red-typography-webextension/
Adres URL Strony Pomocy https://github.com/typograf/red-typography-webextension/issues
Obsługiwane Języki 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"
    }
}