Notion Code Formatter

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

Co to jest Notion Code Formatter?

Notion Code Formatter to rozszerzenie Chrome opracowane przez https://notaku.so, a jego główną funkcją jest „Format code blocks in Notion using Prettier. Made by notaku.so”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Notion Code Formatter

Pobierz pliki rozszerzeń Notion Code Formatter 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

                        Format your Notion code blocks white space and indentation

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

Podstawowe informacje o rozszerzeniu

Nazwa Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
Oficjalny URL https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
Opis Format code blocks in Notion using Prettier. Made by notaku.so
Rozmiar pliku 1.51 MB
Liczba instalacji 131
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2023-03-16
Data Publikacji 2023-02-19
Ocena 3.14/5 Łącznie 7 Oceny
Deweloper https://notaku.so
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://notaku.so
Adres URL Strony Pomocy https://notaku.so
Obsługiwane Języki 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"
            ]
        }
    ]
}