Notion Code Formatter

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

Cos'è Notion Code Formatter?

Notion Code Formatter è un'estensione di Chrome sviluppata da https://notaku.so, e la sua funzione principale è "Format code blocks in Notion using Prettier. Made by notaku.so".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Notion Code Formatter

Scarica i file di estensione Notion Code Formatter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Format your Notion code blocks white space and indentation

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

Informazioni di Base sull'Estensione

Nome Notion Code Formatter Notion Code Formatter
ID maijefmgfbmajbpbdlpbbplggifdgmme
URL Ufficiale https://chromewebstore.google.com/detail/notion-code-formatter/maijefmgfbmajbpbdlpbbplggifdgmme
Descrizione Format code blocks in Notion using Prettier. Made by notaku.so
Dimensione del File 1.51 MB
Conteggio Installazioni 131
Versione Corrente 1.0.3
Ultimo Aggiornamento 2023-03-16
Data di Pubblicazione 2023-02-19
Valutazione 3.14/5 Totale 7 Valutazioni
Sviluppatore https://notaku.so
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://notaku.so
URL della Pagina di Aiuto https://notaku.so
Lingue Supportate 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"
            ]
        }
    ]
}