System Font Everywhere

Use system font on the web

Что такое System Font Everywhere?

System Font Everywhere - это расширение Chrome, разработанное S.J. Zhang, и его основная функция - "Use system font on the web".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения System Font Everywhere

Скачайте файлы расширений System Font Everywhere в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Use this extension to apply System Fonts to the internet. Use San Francisco on macOS and Segoe UI on Windows 10 for the best legibility when you need to read, or on other sites with unfavorable font choices.                    

Основная информация о расширении

Название System Font Everywhere System Font Everywhere
ID dcncgmembfephfbibnnigchndgncmdnj
Официальный URL https://chromewebstore.google.com/detail/system-font-everywhere/dcncgmembfephfbibnnigchndgncmdnj
Описание Use system font on the web
Размер файла 644 KB
Количество установок 317
Текущая Версия 0.0.3
Последнее Обновление 2022-12-12
Дата публикации 2020-03-06
Рейтинг 2.60/5 Всего 5 оценок
Разработчик S.J. Zhang
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://sj.land
URL страницы помощи https://sj.land
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "System Font Everywhere",
    "short_name": "SF Everywhere",
    "version": "0.0.3",
    "description": "Use system font on the web",
    "action": {
        "default_title": "System Font Everywhere",
        "default_icon": "off-icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "128": "128.png"
    }
}