Boldify

Set the first half of words to bold

Что такое Boldify?

Boldify - это расширение Chrome, разработанное Marcel Samyn, и его основная функция - "Set the first half of words to bold".

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

screenshot

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

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

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

                        This extension adds a button to the browser bar. When you click it, the first half of every word in the article you're on becomes bold.

It's an experiment to help you read faster.                    

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

Название Boldify Boldify
ID felocciljakkcpogfaaibfcngebibbdm
Официальный URL https://chromewebstore.google.com/detail/boldify/felocciljakkcpogfaaibfcngebibbdm
Описание Set the first half of words to bold
Размер файла 11.08 KB
Количество установок 717
Текущая Версия 1.0.0
Последнее Обновление 2022-06-06
Дата публикации 2022-06-05
Рейтинг 3.50/5 Всего 4 оценок
Разработчик Marcel Samyn
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Boldify",
    "version": "1.0.0",
    "description": "Set the first half of words to bold",
    "homepage_url": "https:\/\/samyn.co",
    "manifest_version": 3,
    "icons": {
        "128": "icon.dee6e4e2.png"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [],
    "content_scripts": [],
    "action": {
        "default_title": "Click to Boldify"
    },
    "background": {
        "service_worker": "background.29a1a909.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "boldify.js"
            ],
            "matches": []
        }
    ]
}