Notion Code Formatter

Format code blocks in Notion using Prettier. Made by notaku.so

Что такое Notion Code Formatter?

Notion Code Formatter - это расширение Chrome, разработанное https://notaku.so, и его основная функция - "Format code blocks in Notion using Prettier. Made by notaku.so".

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

screenshot

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

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

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

                        Format your Notion code blocks white space and indentation

This extension will add a "format" button at the top of all Notion code blocks                    

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

Название Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
Официальный URL https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
Описание Format code blocks in Notion using Prettier. Made by notaku.so
Размер файла 1.51 MB
Количество установок 131
Текущая Версия 1.0.3
Последнее Обновление 2023-03-16
Дата публикации 2023-02-19
Рейтинг 3.14/5 Всего 7 оценок
Разработчик https://notaku.so
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://notaku.so
URL страницы помощи https://notaku.so
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Code Formatter",
    "version": "1.0.3",
    "description": "Format code blocks in Notion using Prettier. Made by notaku.so",
    "author": "Tommaso De Rossi",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/www.notion.so\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "formatter.js"
            ]
        }
    ]
}